:root {
  --bg: #050505;
  --bg-soft: #0d0c0a;
  --panel: #13110d;
  --gold: #c89a45;
  --gold-light: #e3c37a;
  --text: #f4efe6;
  --muted: #b6aa98;
  --line: rgba(200, 154, 69, 0.34);
  --line-soft: rgba(244, 239, 230, 0.1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(200, 154, 69, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(200, 154, 69, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.38;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 70px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.22));
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.92);
  border-color: var(--line-soft);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 52px;
  object-fit: contain;
}

.brand span {
  color: var(--gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(244, 239, 230, 0.78);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--gold-light);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.7);
  color: var(--text);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: var(--gold-light);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 130px clamp(20px, 6vw, 84px) 80px;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/home-andre-executive.png");
  background-size: cover;
  background-position: right 8%;
  transform: translate3d(var(--hero-x, 0), calc(var(--hero-y, 0px) + 40px), 0) scale(1.005);
  transition: transform 1.2s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.88) 35%, rgba(5, 5, 5, 0.42) 66%, rgba(5, 5, 5, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.08) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
}

.hero-mobile-copy {
  display: none;
}

.eyebrow,
.section-kicker {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(244, 239, 230, 0.84);
  margin: 0 0 34px;
}

.eyebrow span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  margin-bottom: 28px;
  max-width: 600px;
  font-size: clamp(34px, 4.6vw, 62px);
}

.hero h1 {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
  text-transform: uppercase;
}

.hero h1 strong {
  display: block;
  color: var(--gold);
  font-weight: 800;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(31px, 4.3vw, 58px);
}

h3 {
  color: var(--text);
  font-family: "Cinzel", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lines {
  display: grid;
  gap: 18px;
  margin-bottom: 36px;
}

.hero-lines p {
  position: relative;
  margin: 0;
  padding-left: 26px;
  color: rgba(244, 239, 230, 0.9);
  font-size: clamp(19px, 2vw, 28px);
  letter-spacing: 0.08em;
  line-height: 1.42;
  text-transform: uppercase;
}

.hero-lines .hero-lead,
.hero-lead {
  max-width: 520px;
  color: rgba(244, 239, 230, 0.86);
  font-size: clamp(18px, 1.55vw, 22px);
  letter-spacing: 0;
  line-height: 1.34;
  text-transform: none;
}

.hero-lines p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 1px;
  background: var(--gold);
}

strong {
  color: var(--gold-light);
  font-weight: 500;
}

.hero-actions,
.cta-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #090806;
}

.btn.primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 12px 34px rgba(200, 154, 69, 0.18);
}

.btn.secondary {
  background: rgba(5, 5, 5, 0.38);
  color: var(--text);
}

.hero-card {
  position: absolute;
  right: clamp(22px, 7vw, 92px);
  bottom: clamp(26px, 7vw, 72px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(430px, calc(100% - 44px));
  min-height: 116px;
  padding: 22px 26px;
  border: 1px solid var(--gold);
  background: rgba(5, 5, 5, 0.38);
  backdrop-filter: blur(8px);
}

.hero-card p {
  margin: 0;
  color: rgba(244, 239, 230, 0.92);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-transform: uppercase;
}

.main-nav a[aria-current="page"] {
  color: var(--gold-light);
}

.about-page {
  min-height: 100vh;
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  min-height: 100svh;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 70px) 70px;
  background:
    radial-gradient(circle at 18% 12%, rgba(200, 154, 69, 0.12), transparent 28%),
    linear-gradient(120deg, rgba(5, 5, 5, 0.98), rgba(8, 10, 10, 0.96) 52%, rgba(5, 5, 5, 0.72));
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(125deg, transparent 0 52%, rgba(200, 154, 69, 0.72) 52.2%, transparent 53.2%),
    linear-gradient(125deg, transparent 0 55%, rgba(200, 154, 69, 0.24) 55.2%, transparent 56.4%);
  opacity: 0.58;
}

.about-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
}

.about-number {
  width: max-content;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.1;
}

.about-copy h1 {
  max-width: none;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.about-subtitle {
  margin-bottom: 30px;
  color: rgba(244, 239, 230, 0.92);
  font-size: clamp(24px, 2.7vw, 40px);
  font-weight: 500;
  line-height: 1.2;
}

.about-text {
  display: grid;
  gap: 18px;
  max-width: 720px;
  margin-bottom: 32px;
}

.about-text p {
  margin: 0;
  color: rgba(244, 239, 230, 0.85);
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.45;
}

.about-pillars-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: clamp(17px, 1.7vw, 26px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-pillars-head::after {
  content: "";
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.about-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.about-pillar {
  min-height: 208px;
  padding: 24px 16px 20px;
  border: 1px solid var(--gold);
  background: rgba(5, 5, 5, 0.42);
  text-align: center;
  backdrop-filter: blur(7px);
}

.about-pillar svg {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: var(--gold-light);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.about-pillar h2 {
  margin-bottom: 16px;
  color: var(--gold);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(16px, 1.4vw, 23px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.about-pillar h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin: 14px auto 0;
  background: var(--gold);
}

.about-pillar p {
  margin: 0;
  color: rgba(244, 239, 230, 0.82);
  font-size: 15px;
  line-height: 1.42;
}

.about-photo {
  position: relative;
  z-index: 1;
  min-height: 660px;
  margin: -132px clamp(-70px, -5vw, -20px) -70px 40px;
  background-image:
    linear-gradient(90deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.02)),
    url("assets/as27-hero-executive.png");
  background-size: cover;
  background-position: 82% center;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 1px solid rgba(200, 154, 69, 0.5);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.48) 0%, rgba(5, 5, 5, 0.04) 34%, rgba(5, 5, 5, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.78), transparent 28%, transparent 78%, rgba(5, 5, 5, 0.32));
}

.leadership {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(88px, 10vw, 140px) 0;
}

.leadership::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 154, 69, 0.65), transparent);
}

.leadership-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.leadership-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -20px;
  color: var(--gold);
}

.leadership-heading h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 1.02;
  text-transform: uppercase;
}

.leadership-heading h2 span {
  color: var(--gold);
}

.leadership-heading > p:last-child {
  margin: 0 0 5px;
  color: rgba(244, 239, 230, 0.72);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 34px);
}

.leader-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 154, 69, 0.32);
  background: #0a0a0a;
}

.leader-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
}

.leader-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.68), transparent 38%);
  pointer-events: none;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(0.86) contrast(1.04);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.leader-photo-rafael img {
  object-position: center 22%;
}

.leader-card:hover .leader-photo img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.04);
}

.leader-info {
  padding: 24px clamp(18px, 2vw, 28px) 26px;
  border-top: 1px solid rgba(200, 154, 69, 0.32);
}

.leader-info h3 {
  margin: 0 0 7px;
  color: var(--cream);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(19px, 1.8vw, 27px);
  font-weight: 500;
}

.leader-info p {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.leader-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(200, 154, 69, 0.16), transparent 30%),
    linear-gradient(145deg, #151515, #070707);
}

.leader-placeholder::before {
  content: "";
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(200, 154, 69, 0.38);
  border-radius: 50%;
}

.leader-placeholder span {
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(46px, 6vw, 82px);
  letter-spacing: 0.08em;
}

.founder-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 110px);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(90px, 12vw, 150px) 0;
}

.founder-story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.45;
}

.founder-signature {
  position: sticky;
  top: 130px;
  align-self: start;
  min-height: 500px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  background: #050505;
}

.founder-signature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,5,5,.9) 0%, transparent 38%, rgba(5,5,5,.08) 70%);
  pointer-events: none;
}

.founder-signature > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
}

.founder-signature > p {
  position: absolute;
  left: 42px;
  bottom: 38px;
  z-index: 1;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .24em;
  line-height: 1.8;
  text-transform: uppercase;
}

.founder-content h1,
.founder-content h2 {
  margin-bottom: 36px;
  font-family: "Inter", sans-serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  letter-spacing: -.03em;
}

.founder-content h1 strong,
.founder-content h2 strong { display: inline; }

.founder-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 52px;
}

.founder-lead p {
  margin: 0;
  font-size: 17px;
}

.career-path { border-top: 1px solid var(--line); }

.career-path article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line-soft);
}

.career-path article > span {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 18px;
}

.career-path small {
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.career-path h3 { margin: 7px 0 8px; }
.career-path p { margin: 0; }

.founder-content blockquote {
  margin: 55px 0;
  padding: 30px 0 30px 32px;
  border-left: 1px solid var(--gold);
  color: rgba(244,239,230,.9);
  font-family: "Cinzel", serif;
  font-size: clamp(21px, 2.4vw, 32px);
  line-height: 1.45;
}

.legacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.legacy-grid > div {
  padding: 22px 18px;
  background: var(--bg-soft);
}

.legacy-grid strong,
.legacy-grid span { display: block; }
.legacy-grid strong { margin-bottom: 10px; color: var(--gold-light); }
.legacy-grid span { color: var(--muted); font-size: 12px; line-height: 1.5; }
.founder-close { max-width: 740px; margin-bottom: 30px; font-size: 18px; }

.career-gallery {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(80px, 10vw, 130px) 0 clamp(100px, 12vw, 160px);
  border-top: 1px solid var(--line);
}

.career-gallery-header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.career-gallery-header h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.career-gallery-header h2 strong { color: var(--gold-light); }

.career-gallery-header > p {
  max-width: 520px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.career-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(250px, 30vw, 390px);
  gap: 10px;
}

.career-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--bg-soft);
}

.career-photo-wide { grid-column: span 2; }
.career-photo-tall { grid-row: span 2; }

.career-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,5,5,.9) 0%, rgba(5,5,5,.04) 58%);
  pointer-events: none;
}

.career-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .7s ease;
}

.career-photo-tall img { object-position: center 18%; }
.career-photo:nth-child(4) img { object-position: center 28%; }

.career-photo:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.career-photo figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(20px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 30px);
}

.career-photo figcaption span,
.career-photo figcaption strong { display: block; }

.career-photo figcaption span {
  margin-bottom: 7px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.career-photo figcaption strong {
  color: var(--cream);
  font-family: "Cinzel", serif;
  font-size: clamp(19px, 2.2vw, 29px);
  font-weight: 500;
}

@media (max-width: 860px) {
  .founder-story { grid-template-columns: 1fr; }
  .founder-signature { position: relative; top: auto; min-height: 360px; }
  .founder-signature > img { min-height: 360px; }
  .founder-lead { grid-template-columns: 1fr; }
  .career-gallery-header { grid-template-columns: 1fr; gap: 24px; }
  .career-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 330px; }
  .career-photo-wide { grid-column: span 1; }
  .career-photo-tall { grid-row: span 1; }
}

@media (max-width: 560px) {
  .legacy-grid { grid-template-columns: 1fr; }
  .founder-signature { min-height: 320px; }
  .founder-signature > img { min-height: 320px; }
  .founder-signature > p { left: 30px; bottom: 24px; }
  .career-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 290px; gap: 8px; }
  .career-photo:nth-child(2),
  .career-photo:nth-child(4) { min-height: 370px; }
}

/* Convite flutuante */
.floating-join {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 90;
  color: var(--cream);
  text-decoration: none;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.5));
}

.floating-join > summary {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  list-style: none;
}

.floating-join > summary::-webkit-details-marker { display: none; }

.floating-join-options {
  position: absolute;
  right: 0;
  bottom: calc(100% + 13px);
  display: grid;
  width: 220px;
  padding: 8px;
  border: 1px solid rgba(199, 159, 80, 0.42);
  border-radius: 12px;
  background: rgba(10, 10, 9, 0.97);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  transform: translateY(8px);
  opacity: 0;
}

.floating-join[open] .floating-join-options {
  animation: floating-options-in 180ms ease forwards;
}

.floating-join-options a {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border-radius: 7px;
  color: var(--cream);
  text-decoration: none;
  transition: background 160ms ease;
}

.floating-join-options a + a { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.floating-join-options a:hover,
.floating-join-options a:focus-visible { background: rgba(199, 159, 80, 0.1); outline: none; }
.floating-join-options strong { color: var(--gold-light); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.floating-join-options strong.whatsapp-option { display: flex; align-items: center; gap: 7px; }
.floating-join-options strong.whatsapp-option svg { width: 18px; height: 18px; flex: 0 0 auto; color: #25d366; }
.floating-join-options span { color: var(--muted); font-size: 11px; }

.floating-join-label {
  position: relative;
  padding: 12px 17px;
  border: 1px solid rgba(199, 159, 80, 0.5);
  border-radius: 9px;
  background: rgba(11, 11, 11, 0.94);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.floating-join-label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(199, 159, 80, 0.5);
  border-right: 1px solid rgba(199, 159, 80, 0.5);
  background: #0b0b0b;
  transform: translateY(-50%) rotate(45deg);
}

.floating-join-dot {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  background: linear-gradient(145deg, #d5ae60, #9d722c);
  color: #090909;
  font-family: "Inter", sans-serif;
  font-size: 25px;
  font-weight: 300;
  box-shadow: 0 0 0 0 rgba(199, 159, 80, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease;
  animation: floating-join-pulse 2.8s ease-out infinite;
}

.floating-join-dot svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.floating-join:hover .floating-join-label,
.floating-join > summary:focus-visible .floating-join-label {
  border-color: var(--gold-light);
  background: #111;
  transform: translateX(-3px);
}

.floating-join:hover .floating-join-dot,
.floating-join > summary:focus-visible .floating-join-dot {
  transform: scale(1.07);
  box-shadow: 0 0 0 7px rgba(199, 159, 80, 0.12);
}

.floating-join > summary:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 5px;
  border-radius: 30px;
}

.floating-join[open] .floating-join-dot { transform: rotate(45deg); }

@keyframes floating-options-in {
  to { transform: translateY(0); opacity: 1; }
}

@keyframes floating-join-pulse {
  0%, 55%, 100% { box-shadow: 0 0 0 0 rgba(199, 159, 80, 0); }
  15% { box-shadow: 0 0 0 9px rgba(199, 159, 80, 0.12); }
}

@media (max-width: 560px) {
  .floating-join {
    right: 14px;
    bottom: 16px;
  }

  .floating-join > summary { gap: 8px; }

  .floating-join-label {
    padding: 10px 13px;
    font-size: 10px;
  }

  .floating-join-dot {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    font-size: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-join-dot { animation: none; }
}

.icon-network {
  position: relative;
  width: 68px;
  height: 54px;
  flex: 0 0 auto;
}

.icon-network::before,
.icon-network::after {
  content: "";
  position: absolute;
  height: 1px;
  background: var(--gold);
  transform-origin: left center;
}

.icon-network::before {
  left: 20px;
  top: 20px;
  width: 31px;
  transform: rotate(30deg);
}

.icon-network::after {
  left: 18px;
  top: 35px;
  width: 32px;
  transform: rotate(-28deg);
}

.icon-network i {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold);
  border-radius: 999px;
}

.icon-network i:nth-child(1) {
  left: 25px;
  top: 0;
}

.icon-network i:nth-child(2) {
  left: 0;
  bottom: 0;
}

.icon-network i:nth-child(3) {
  right: 0;
  bottom: 0;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 126px) 0;
}

.manifesto-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: start;
}

.manifesto h2 {
  max-width: 720px;
  padding-left: clamp(20px, 3vw, 34px);
  border-left: 1px solid var(--gold);
  color: rgba(244, 239, 230, 0.9);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.42;
}

.copy-block {
  border-left: 1px solid var(--gold);
  padding-left: clamp(22px, 4vw, 40px);
}

.copy-block p {
  font-size: 18px;
}

.business-football {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 clamp(80px, 10vw, 126px);
}

.business-football-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  column-gap: clamp(40px, 7vw, 90px);
  align-items: end;
  margin-bottom: clamp(38px, 5vw, 58px);
}

.business-football-copy .section-kicker { grid-column: 1 / -1; }

.business-football-copy h2 {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(32px, 4.1vw, 56px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.business-football-copy h2 strong { color: var(--gold-light); }

.business-football-copy > p:last-child {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.business-football-gallery {
  display: grid;
  grid-template-columns: 1.45fr .78fr .78fr;
  grid-auto-rows: clamp(390px, 39vw, 520px);
  gap: 10px;
}

.business-football-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-soft);
  background: var(--panel);
}

.business-football-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,5,5,.94), rgba(5,5,5,.04) 56%);
  pointer-events: none;
}

.business-football-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .7s ease;
}

.business-football-main img { object-position: 58% center; }
.business-football-gallery figure:nth-child(2) img { object-position: 52% center; }
.business-football-gallery figure:nth-child(3) img { object-position: 70% center; }

.business-football-gallery figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.06);
}

.business-football-gallery figcaption {
  position: absolute;
  z-index: 1;
  left: clamp(20px, 2.5vw, 32px);
  right: 20px;
  bottom: clamp(20px, 2.5vw, 30px);
}

.business-football-gallery figcaption span,
.business-football-gallery figcaption strong { display: block; }

.business-football-gallery figcaption span {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .23em;
  text-transform: uppercase;
}

.business-football-gallery figcaption strong {
  color: var(--cream);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.35;
}

.section-kicker {
  margin-bottom: 18px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 44px;
}

.section-head > div {
  max-width: 720px;
}

.section-head > p {
  max-width: 390px;
  margin-bottom: 6px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.pillar,
.feature-list article,
.timeline article {
  background: linear-gradient(145deg, rgba(19, 17, 13, 0.96), rgba(8, 8, 7, 0.96));
}

.pillar {
  min-height: 310px;
  padding: clamp(26px, 4vw, 42px);
}

.pillar,
.solution-card,
.feature-list article,
.timeline article,
.about-pillar {
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.pillar:hover,
.solution-card:hover,
.feature-list article:hover,
.timeline article:hover,
.about-pillar:hover {
  transform: translateY(-5px);
  border-color: rgba(227, 195, 122, 0.5);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.solution-card:hover .solution-icon,
.about-pillar:hover svg {
  transform: translateY(-2px) scale(1.04);
  color: var(--gold);
}

.solution-icon,
.about-pillar svg {
  transition: transform 0.35s ease, color 0.35s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s ease var(--reveal-delay, 0ms),
    transform 0.75s cubic-bezier(0.2, 0.72, 0.25, 1) var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-arrive {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content > *,
.hero-card {
  opacity: 0;
  animation: hero-arrive 0.85s both cubic-bezier(0.2, 0.72, 0.25, 1);
}

.hero-content > :nth-child(1) { animation-delay: 0.12s; }
.hero-content > :nth-child(2) { animation-delay: 0.22s; }
.hero-content > :nth-child(3) { animation-delay: 0.34s; }
.hero-content > :nth-child(4) { animation-delay: 0.46s; }
.hero-card { animation-delay: 0.58s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.pillar span,
.timeline span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 54px;
  border: 1px solid var(--line);
  color: var(--gold-light);
  font-family: "Cinzel", Georgia, serif;
}

.pillar p,
.feature-list p,
.timeline p {
  margin-bottom: 0;
}

.solutions {
  border-top: 1px solid var(--line-soft);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.solution-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(145deg, rgba(200, 154, 69, 0.08), rgba(200, 154, 69, 0.015) 38%),
    linear-gradient(145deg, rgba(19, 17, 13, 0.96), rgba(8, 8, 7, 0.96));
}

.solution-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  color: var(--gold-light);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.solution-card h3 {
  min-height: 54px;
  margin-bottom: 16px;
  font-size: 19px;
  line-height: 1.28;
}

.solution-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-card li {
  position: relative;
  padding-left: 15px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.solution-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 1px;
  background: var(--gold);
}

.experience {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.experience h2 {
  font-size: clamp(26px, 3.1vw, 42px);
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list article {
  padding: 28px;
  border-left: 1px solid var(--gold);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line-soft);
}

.timeline span {
  margin-bottom: 42px;
}

.cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto clamp(44px, 7vw, 80px);
  border: 1px solid var(--gold);
  background:
    linear-gradient(90deg, rgba(200, 154, 69, 0.12), rgba(200, 154, 69, 0.02)),
    var(--panel);
}

.cta-inner {
  justify-content: space-between;
  padding: clamp(32px, 5vw, 62px);
}

.cta h2 {
  margin-bottom: 14px;
}

.cta p {
  max-width: 680px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 84px);
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 13px;
}

.site-footer img {
  width: 42px;
  height: 48px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-footer .footer-whatsapp { display: inline-flex; align-items: center; gap: 7px; }
.site-footer .footer-whatsapp svg { width: 18px; height: 18px; flex: 0 0 auto; color: #25d366; }

.impact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(200, 154, 69, 0.1), rgba(10, 10, 9, 0.95) 30%, rgba(10, 10, 9, 0.95) 70%, rgba(200, 154, 69, 0.1));
}

.impact-item {
  min-height: 138px;
  padding: 30px clamp(18px, 2.2vw, 34px);
  border-right: 1px solid var(--line-soft);
}

.impact-item:last-child { border-right: 0; }
.impact-item strong,
.impact-item span { display: block; }

.impact-item strong {
  margin-bottom: 9px;
  color: var(--gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.1;
}

.impact-item span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.business-fronts {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) 0;
}

.fronts-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 50px;
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.fronts-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.03;
  text-transform: uppercase;
}

.fronts-heading h2 strong { color: var(--gold); }

.fronts-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.fronts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.front-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  color: var(--text);
}

.front-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 3, 3, 0.96), rgba(3, 3, 3, 0.08) 68%), linear-gradient(90deg, rgba(3, 3, 3, 0.24), transparent);
}

.front-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.2,.65,.2,1), filter 0.8s ease;
}

.front-card:nth-child(1) img { object-position: 69% center; }
.front-card:nth-child(2) img { object-position: 56% center; }
.front-card:nth-child(3) img { object-position: 54% center; }
.front-card:hover img { transform: scale(1.045); filter: saturate(1.08); }

.front-index {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.front-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(24px, 3vw, 38px);
}

.front-content p {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.front-content h3 {
  margin-bottom: 28px;
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.15;
  text-transform: uppercase;
}

.front-link {
  display: flex;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid rgba(244, 239, 230, 0.25);
  color: rgba(244, 239, 230, 0.8);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.front-link b { color: var(--gold); font-size: 18px; transition: transform 0.25s ease; }
.front-card:hover .front-link b { transform: translateX(5px); }

.exclusive-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: clamp(70px, 9vw, 120px) auto;
  padding: clamp(52px, 7vw, 90px);
  overflow: hidden;
  border: 1px solid rgba(200, 154, 69, 0.55);
  background: radial-gradient(circle at 82% 50%, rgba(200, 154, 69, 0.2), transparent 30%), linear-gradient(125deg, #17130c, #070706 58%);
}

.exclusive-mark {
  position: absolute;
  right: -28px;
  bottom: -34px;
  color: rgba(200, 154, 69, 0.055);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(74px, 13vw, 180px);
  line-height: 1;
  pointer-events: none;
}

.exclusive-copy,
.exclusive-number { position: relative; z-index: 1; }

.exclusive-copy h2 {
  margin: 16px 0 20px;
  font-size: clamp(38px, 5.6vw, 74px);
  text-transform: uppercase;
}

.exclusive-copy h2 strong { color: var(--gold); }
.exclusive-copy > p:not(.section-kicker) { max-width: 640px; font-size: 17px; line-height: 1.7; }

.exclusive-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 32px;
}

.exclusive-benefits span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.exclusive-number {
  padding-left: clamp(30px, 5vw, 70px);
  border-left: 1px solid rgba(200, 154, 69, 0.45);
}

.exclusive-number strong,
.exclusive-number span { display: block; }

.exclusive-number strong {
  color: var(--gold-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(74px, 10vw, 140px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.exclusive-number span {
  margin-top: 20px;
  color: var(--text);
  font-size: clamp(15px, 1.5vw, 20px);
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.96);
  }

  .main-nav.is-open {
    display: flex;
  }

  .business-football-copy { grid-template-columns: 1fr; gap: 22px; }
  .business-football-copy .section-kicker { grid-column: auto; }
  .business-football-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 340px; }
  .business-football-main { grid-column: 1 / -1; }

  .impact-strip { grid-template-columns: repeat(2, 1fr); }
  .impact-item:nth-child(2) { border-right: 0; }
  .impact-item:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .fronts-heading { grid-template-columns: 1fr; gap: 18px; }
  .fronts-grid { grid-template-columns: 1fr; }
  .front-card { min-height: 460px; }
  .exclusive-feature { grid-template-columns: 1fr; }
  .exclusive-number { padding: 30px 0 0; border-top: 1px solid rgba(200, 154, 69, 0.45); border-left: 0; }

  .main-nav a {
    padding: 18px;
    border-bottom: 1px solid var(--line-soft);
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding-top: 0;
  }

  .hero-bg {
    position: relative;
    inset: auto;
    order: 0;
    width: calc(100% + clamp(40px, 12vw, 168px));
    height: clamp(390px, 62svh, 620px);
    margin: 0 calc(clamp(20px, 6vw, 84px) * -1) 42px;
    background-position: 76% 8%;
    transform: translateY(40px);
  }

  .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.18) 42%, rgba(5, 5, 5, 0.96) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.7) 0%, rgba(5, 5, 5, 0.26) 54%, rgba(5, 5, 5, 0.1) 100%);
  }

  .hero-shade {
    display: none;
  }

  .hero-mobile-copy {
    position: absolute;
    top: clamp(118px, 20svh, 190px);
    left: clamp(20px, 6vw, 84px);
    right: clamp(20px, 6vw, 84px);
    z-index: 4;
    display: block;
    max-width: 560px;
    pointer-events: none;
  }

  .hero-mobile-copy .eyebrow {
    margin: 0 0 24px;
    color: rgba(244, 239, 230, 0.9);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
  }

  .hero-mobile-copy h1 {
    max-width: 520px;
    margin: 0 0 20px;
    color: var(--text);
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.82);
  }

  .hero-mobile-copy .hero-lead {
    max-width: 420px;
    margin: 0;
    color: rgba(244, 239, 230, 0.9);
    font-size: 18px;
    line-height: 1.38;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.78);
  }

  .hero-content {
    order: 1;
  }

  .hero-content > .eyebrow,
  .hero-content > h1 {
    display: none;
  }

  .hero-content .hero-lines {
    display: none;
  }

  .hero-card {
    position: relative;
    order: 2;
    right: auto;
    bottom: auto;
    margin-top: 42px;
  }

  .about-hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 0 18px 58px;
  }

  .about-hero::before {
    background:
      linear-gradient(160deg, transparent 0 53%, rgba(200, 154, 69, 0.52) 53.2%, transparent 54.4%);
  }

  .about-photo {
    order: 0;
    width: calc(100% + 36px);
    min-height: clamp(360px, 55svh, 560px);
    margin: 0 -18px 34px;
    background-position: 74% center;
  }

  .about-copy {
    order: 1;
    max-width: none;
  }

  .about-number {
    margin-bottom: 16px;
  }

  .about-copy h1 {
    max-width: 100%;
    font-size: clamp(44px, 14vw, 72px);
  }

  .about-subtitle {
    font-size: clamp(23px, 7vw, 34px);
  }

  .about-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manifesto-grid,
  .split,
  .pillar-grid,
  .solutions-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head > p {
    max-width: none;
    margin-top: 18px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand img {
    width: 44px;
    height: 50px;
  }

  .brand span {
    font-size: 12px;
  }

  .hero {
    padding: 0 18px 52px;
  }

  h1 {
    max-width: 360px;
    font-size: 31px;
    line-height: 1.14;
  }

  .hero-bg {
    width: calc(100% + 36px);
    height: clamp(360px, 56svh, 500px);
    margin: 0 -18px 30px;
    opacity: 1;
    background-size: cover;
    background-position: 78% 6%;
  }

  .hero-mobile-copy {
    top: clamp(106px, 18svh, 150px);
    left: 18px;
    right: 18px;
  }

  .hero-mobile-copy .eyebrow {
    gap: 8px;
    margin-bottom: 20px;
  }

  .hero-mobile-copy h1 {
    max-width: 340px;
    margin-bottom: 16px;
    font-size: 30px;
    line-height: 1.04;
  }

  .hero-mobile-copy .hero-lead {
    max-width: 300px;
    font-size: 15px;
    line-height: 1.32;
  }

  .eyebrow,
  .section-kicker {
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  .hero-lines p {
    font-size: 16px;
    letter-spacing: 0.05em;
  }

  .hero-actions,
  .cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    padding-inline: 16px;
    text-align: center;
  }

  .hero-card {
    align-items: flex-start;
    padding: 18px;
  }

  .hero-card p {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .about-photo {
    min-height: 390px;
    background-position: 76% center;
  }

  .about-text {
    gap: 16px;
    margin-bottom: 30px;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.5;
  }

  .about-pillars-head {
    font-size: 17px;
  }

  .about-pillar-grid {
    gap: 10px;
  }

  .about-pillar {
    min-height: 184px;
    padding: 20px 12px 18px;
  }

  .about-pillar svg {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }

  .about-pillar h2 {
    font-size: 15px;
  }

  .about-pillar p {
    font-size: 13px;
  }

  .leadership {
    width: min(100% - 32px, var(--max));
    padding: 72px 0;
  }

  .leadership-heading {
    display: block;
    margin-bottom: 34px;
  }

  .leadership-heading .section-kicker {
    margin-bottom: 18px;
  }

  .leadership-heading h2 {
    margin-bottom: 22px;
    font-size: clamp(34px, 10vw, 48px);
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .leader-photo {
    aspect-ratio: 4 / 4.6;
  }

  .icon-network {
    width: 54px;
    transform: scale(0.86);
    transform-origin: left top;
  }

  .section {
    width: min(100% - 32px, var(--max));
    padding: 58px 0;
  }

  .experience h2 {
    font-size: 24px;
  }

  .manifesto {
    padding-top: 46px;
  }

  .manifesto-grid {
    gap: 24px;
  }

  .manifesto h2 {
    max-width: 330px;
    padding-left: 18px;
    border-left: 1px solid var(--gold);
    color: rgba(244, 239, 230, 0.9);
    font-family: "Inter", Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.42;
  }

  .manifesto .copy-block {
    border-left: 0;
  }

  .impact-strip {
    width: min(100% - 32px, var(--max));
  }

  .impact-item {
    min-height: 116px;
    padding: 22px 16px;
  }

  .impact-item strong { font-size: 19px; }
  .impact-item span { font-size: 9px; letter-spacing: 0.04em; }

  .business-fronts {
    width: min(100% - 32px, var(--max));
    padding: 66px 0;
  }

  .fronts-heading h2 { font-size: 32px; }
  .fronts-heading > p { font-size: 15px; }
  .front-card { min-height: 410px; }
  .front-content { padding: 24px 20px; }
  .front-content h3 { font-size: 22px; }

  .exclusive-feature {
    width: min(100% - 32px, var(--max));
    margin: 64px auto;
    padding: 38px 22px;
  }

  .exclusive-copy h2 { font-size: 38px; }
  .exclusive-copy > p:not(.section-kicker) { font-size: 15px; }
  .exclusive-number strong { font-size: 76px; }
  .exclusive-number span { font-size: 13px; }

  .business-football {
    width: min(100% - 32px, var(--max));
    padding-bottom: 64px;
  }

  .business-football-copy h2 {
    font-size: 29px;
  }

  .business-football-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
    gap: 8px;
  }

  .business-football-main { grid-column: auto; }
  .business-football-gallery figure:nth-child(2) { min-height: 370px; }

  .copy-block,
  .feature-list article {
    padding-left: 20px;
  }

  .pillar,
  .solution-card,
  .timeline article {
    min-height: auto;
  }

  .solutions-grid {
    gap: 10px;
  }

  .solution-card {
    padding: 22px;
  }

  .solution-icon {
    float: left;
    width: 38px;
    height: 38px;
    margin: 2px 16px 12px 0;
  }

  .solution-card h3 {
    min-height: 0;
    margin-bottom: 14px;
    font-size: 17px;
  }

  .solution-card ul {
    clear: both;
  }

  .solution-card li {
    font-size: 13px;
    line-height: 1.45;
  }

  .pillar span,
  .timeline span {
    margin-bottom: 30px;
  }

  .cta {
    width: min(100% - 32px, var(--max));
  }
}
