@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Manrope:wght@300;400;500&display=swap");

:root {
  --ink: #090908;
  --ink-soft: #12110f;
  --paper: #f0ece3;
  --paper-deep: #ded7ca;
  --gold: #d9a84f;
  --gold-light: #f1ce83;
  --gold-deep: #93652a;
  --muted: #9d988f;
  --line: rgba(10, 10, 9, 0.18);
  --line-dark: rgba(245, 239, 225, 0.16);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; background: var(--ink); }
section[id], [id="recognition"] { scroll-margin-top: 72px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
body.intro-pending, body.intro-ready { background: #050504; }
body.intro-pending { overflow: hidden; }
body.intro-pending main { opacity: 0; }
body.intro-pending .hero__eyebrow,
body.intro-pending .hero h1,
body.intro-pending .hero__intro,
body.intro-pending .hero__actions,
body.intro-pending .hero__portrait { animation-play-state: paused; }
body.intro-ready main { opacity: 1; transition: opacity 1.45s cubic-bezier(.16,1,.3,1); }
.site-intro { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; overflow: hidden; background: #050504; color: var(--paper); opacity: 1; visibility: visible; transition: opacity 1.35s cubic-bezier(.16,1,.3,1), visibility 1.35s; }
.site-intro::before { content: ""; position: absolute; width: min(72vw,760px); aspect-ratio: 1; border: 1px solid rgba(241,206,131,.07); border-radius: 50%; box-shadow: inset 0 0 120px rgba(217,168,79,.025), 0 0 140px rgba(217,168,79,.035); opacity: 0; transform: scale(.72); animation: intro-halo 1.45s .18s cubic-bezier(.16,1,.3,1) forwards; }
.site-intro--dismissed { opacity: 0; visibility: hidden; pointer-events: none; }
.site-intro__content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.site-intro__mark { width: clamp(145px,18vw,220px); height: clamp(145px,18vw,220px); opacity: 0; filter: blur(12px) drop-shadow(0 0 0 rgba(217,168,79,0)); transform: scale(.72) rotate(-8deg); animation: intro-mark 1.3s .08s cubic-bezier(.16,1,.3,1) forwards; }
.site-intro__mark .mark__orbit, .site-intro__mark .mark__core { border-width: 2px; }
.site-intro__wordmark { display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; transform: translateY(12px); animation: intro-wordmark .75s .82s ease forwards; }
.site-intro__wordmark > span { font-size: clamp(11px,1.2vw,15px); font-weight: 500; letter-spacing: .42em; text-indent: .42em; }
.site-intro__wordmark small { color: var(--gold-light); font-size: 7px; font-weight: 500; letter-spacing: .46em; text-indent: .46em; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--gold); color: var(--ink); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 84px;
  padding: 0 clamp(22px, 4vw, 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--paper);
  background: linear-gradient(to bottom, rgba(4, 4, 3, 0.78), transparent);
  backdrop-filter: blur(2px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .24em;
}
.brand__wordmark { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; line-height: 1; }
.brand__name { display: block; }
.brand__descriptor { display: block; color: var(--gold-light); font-size: 7px; font-weight: 500; letter-spacing: .38em; opacity: .82; }
.nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); font-size: 12px; }
.nav a { opacity: .72; transition: opacity .3s ease; }
.nav a:hover { opacity: 1; }
.nav__cta { border-bottom: 1px solid var(--gold); padding: 10px 0; opacity: 1 !important; }
.menu-button { display: none; }

.mark { position: relative; display: inline-block; width: 120px; height: 120px; }
.mark--compact { width: 28px; height: 28px; }
.mark__triangle {
  position: absolute; inset: 10%;
  clip-path: polygon(50% 0, 100% 90%, 76% 90%, 50% 37%, 24% 90%, 0 90%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
}
.mark__orbit {
  position: absolute; inset: 32%; border: 1px solid var(--gold-light); border-radius: 50%;
  border-right-color: transparent; animation: orbit 9s linear infinite;
}
.mark__core { position: absolute; inset: 42%; border: 1px solid var(--gold); border-radius: 50%; }

.hero {
  position: relative;
  min-height: 100svh;
  background: var(--ink);
  color: var(--paper);
  padding: 150px clamp(22px, 7vw, 112px) 54px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  overflow: hidden;
}
.gold-field, .hero__grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__grid {
  opacity: .24;
  background-image: linear-gradient(var(--line-dark) 1px, transparent 1px), linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 76%);
}
.hero__copy { position: relative; z-index: 2; max-width: 820px; }
.eyebrow { text-transform: uppercase; letter-spacing: .25em; font-size: 10px; font-weight: 500; }
.hero__eyebrow { color: var(--gold-light); margin: 0 0 32px; opacity: 0; animation: rise .8s .2s ease forwards; }
.hero h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(72px, 9.8vw, 164px);
  font-weight: 300;
  letter-spacing: -.075em;
  line-height: .82;
  max-width: 980px;
  opacity: 0;
  animation: rise 1s .32s cubic-bezier(.16, 1, .3, 1) forwards;
}
.gold-word {
  display: block;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-light);
  text-shadow: 0 0 80px rgba(217, 168, 79, .18);
}
.hero__intro { font-size: clamp(16px, 1.35vw, 21px); line-height: 1.65; max-width: 610px; color: #bbb4a8; margin: 44px 0; opacity: 0; animation: rise .9s .52s ease forwards; }
.hero__actions { display: flex; align-items: center; gap: 38px; opacity: 0; animation: rise .9s .66s ease forwards; }
.button {
  border: 0; display: inline-flex; align-items: center; justify-content: space-between; gap: 42px;
  padding: 17px 20px; min-width: 210px; font-size: 12px; font-weight: 500; cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 16px 42px rgba(217,168,79,.16); }
.button--gold { color: #120e07; background: linear-gradient(115deg, var(--gold-light), var(--gold)); }
.text-link { border: 0; background: transparent; padding: 8px 0; font-size: 12px; border-bottom: 1px solid rgba(10,10,9,.3); display: inline-flex; gap: 24px; cursor: pointer; }
.hero .text-link { color: var(--paper); border-color: var(--line-dark); }
.hero__portrait {
  position: relative; z-index: 1; justify-self: end; width: min(35vw, 500px); aspect-ratio: .82;
  opacity: 0; animation: markIn 1.4s .3s cubic-bezier(.16,1,.3,1) forwards;
  border: 1px solid rgba(217,168,79,.28); overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
}
.hero__copy, .hero__portrait { top: -40px; }
.hero__portrait > img, .hero__portrait > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.68) contrast(1.08) brightness(.76); }
.hero__video { opacity: .9; transform: scale(1.46); transform-origin: center; }
.hero__portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,5,4,.62)), linear-gradient(90deg, rgba(6,5,4,.18), transparent 45%); }
.hero__portrait .mark { position: absolute; width: 46%; height: auto; aspect-ratio: 1; right: 3%; bottom: 2%; opacity: .15; z-index: 2; }
.hero__portrait-ring { position: absolute; z-index: 3; width: 170px; height: 170px; right: -50px; top: 16%; border: 1px solid rgba(241,206,131,.38); border-radius: 50%; }
.hero__footer {
  position: absolute; z-index: 2; bottom: 34px; left: clamp(22px, 7vw, 112px); right: clamp(22px, 4vw, 68px);
  display: flex; justify-content: space-between; font-size: 10px; color: #7e786e; letter-spacing: .12em; text-transform: uppercase;
}
.scroll-cue { display: flex; align-items: center; gap: 12px; }
.scroll-cue i { display: block; width: 34px; height: 1px; background: var(--gold); animation: breathe 2s ease infinite; }

.section { padding: clamp(90px, 11vw, 180px) clamp(22px, 7vw, 112px); }
.section-label { display: flex; align-items: center; gap: 18px; margin-bottom: 80px; }
.section-label span { color: var(--gold-deep); font-size: 11px; font-weight: 500; }
.section-label p { margin: 0; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; }
.section-label::after { content: ""; height: 1px; flex: 1; margin-left: 20px; background: var(--line); transform-origin: left; }
.section-label--light { color: var(--paper); }
.section-label--light::after { background: var(--line-dark); }
.section-label--light span { color: var(--gold-light); }

[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .9s cubic-bezier(.16,1,.3,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

.manifesto { background: var(--paper); }
.manifesto--experience {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(620px, 56vw, 840px);
  padding-top: clamp(82px, 8vw, 126px);
  padding-bottom: clamp(76px, 6vw, 96px);
}
.manifesto--experience .section-label,
.manifesto--experience .manifesto__content { position: relative; z-index: 2; }
.manifesto--experience .section-label { margin-bottom: clamp(54px, 5vw, 70px); }
.impossible-word {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(9, 9, 8, .42);
  filter: blur(5px);
  transform: translateY(4px);
  transition:
    color 1.2s .28s ease,
    -webkit-text-stroke-color 1.2s .28s ease,
    filter 1.1s .22s ease,
    transform 1.1s .22s cubic-bezier(.16,1,.3,1),
    text-shadow 1.4s .2s ease;
}
.display-copy.is-visible .impossible-word {
  color: var(--ink);
  -webkit-text-stroke-color: transparent;
  filter: blur(0);
  transform: none;
  text-shadow: 0 0 34px rgba(217,168,79,.18);
}
.experience-orbit {
  position: absolute;
  z-index: 0;
  width: clamp(470px, 52vw, 780px);
  height: clamp(470px, 52vw, 780px);
  left: 51%;
  top: 50%;
  opacity: 0;
  transform: translate(-50%, -46%) scale(.86) rotate(-8deg);
  pointer-events: none;
  transition: opacity 1.2s ease, transform 1.6s cubic-bezier(.16,1,.3,1);
}
.experience-orbit.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0);
}
.experience-orbit__ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(147,101,42,.18);
  clip-path: inset(0);
}
.experience-orbit__ring { animation: experience-orbit-turn 20s linear infinite; }
.experience-orbit__ring--outer { inset: 2%; border-right-color: transparent; animation-duration: 24s !important; }
.experience-orbit__ring--middle { inset: 19%; border-left-color: transparent; border-bottom-color: rgba(147,101,42,.12); animation-duration: 18s !important; animation-direction: reverse !important; }
.experience-orbit__ring--inner { inset: 35%; border-top-color: transparent; animation-duration: 13s !important; }
.experience-orbit__traveler {
  position: absolute;
  left: 49%;
  top: 49%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(217,168,79,.09), 0 0 28px rgba(147,101,42,.42);
  opacity: 0;
  offset-path: circle(47% at 50% 50%);
}
.experience-orbit__traveler { animation: experience-travel 4.8s .4s linear infinite; }
.experience-orbit__glow {
  position: absolute;
  inset: 27%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,168,79,.07), rgba(217,168,79,0) 68%);
  opacity: 0;
}
.experience-orbit__glow { animation: experience-glow 4.2s .4s ease-in-out infinite; }
.profile-section { background: var(--paper-deep); }
.manifesto__content { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(60px, 10vw, 180px); align-items: end; }
.manifesto__content--profile { grid-template-columns: minmax(280px,.7fr) 1.3fr; align-items: center; gap: clamp(55px,8vw,130px); }
.profile-photo { position: relative; min-height: 620px; overflow: hidden; background: var(--ink); }
.profile-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% center; filter: saturate(.82) contrast(1.05); transition: transform 1s cubic-bezier(.16,1,.3,1); }
.profile-photo:hover img { transform: scale(1.035); }
.profile-photo::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent,rgba(3,3,2,.78)); }
.profile-photo > span { position: absolute; z-index: 2; left: 28px; bottom: 25px; color: var(--gold-light); text-transform: uppercase; letter-spacing: .18em; font-size: 10px; }
.manifesto__profile .display-copy { font-size: clamp(42px,5vw,78px); }
.manifesto__profile .display-copy em { color: var(--gold-deep); }
.manifesto__profile .manifesto__detail { margin-top: 45px; max-width: 700px; }
.manifesto__profile cite { font-style: italic; }
.profile-more { margin-top: 34px; padding: 10px 0; display: inline-flex; align-items: center; gap: 34px; border: 0; border-bottom: 1px solid rgba(147,101,42,.45); background: transparent; color: var(--ink); font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .18em; cursor: pointer; }
.profile-more__arrow { color: var(--gold-deep); font-size: 15px; transition: transform .4s ease; }
.profile-more[aria-expanded="true"] .profile-more__arrow { transform: rotate(180deg); }
.profile-credentials { margin-top: 42px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.profile-credentials span { padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #5d574f; font-size: 11px; line-height: 1.55; }
.profile-credentials cite { font-style: italic; }
.display-copy { margin: 0; font-family: "Manrope", sans-serif; font-weight: 300; font-size: clamp(44px, 6.2vw, 98px); line-height: 1.04; letter-spacing: -.055em; }
.manifesto__detail { font-size: 15px; line-height: 1.75; color: #4e4a44; }
.manifesto__detail p + p { margin-top: 25px; }

.recognition__embedded { display: grid; grid-template-rows: 0fr; margin-top: 0; padding-top: 0; border-top: 1px solid transparent; transition: grid-template-rows .8s cubic-bezier(.16,1,.3,1), margin-top .8s cubic-bezier(.16,1,.3,1), padding-top .8s cubic-bezier(.16,1,.3,1), border-color .5s ease; }
.recognition__embedded.is-open { grid-template-rows: 1fr; margin-top: clamp(75px, 8vw, 120px); padding-top: clamp(65px, 7vw, 105px); border-top-color: var(--line); }
.recognition__inner { min-height: 0; overflow: hidden; opacity: 0; transform: translateY(20px); transition: opacity .45s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.recognition__embedded.is-open .recognition__inner { opacity: 1; transform: none; transition-delay: .12s; }
.recognition__heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 65px; }
.recognition__heading h2 { margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(46px, 6.5vw, 92px); line-height: .98; letter-spacing: -.06em; font-weight: 300; }
.profile-section .recognition__heading h2 { font-size: clamp(42px, 5.5vw, 78px); }
.recognition__heading h2 em { color: var(--gold-deep); }
.recognition__heading > p { max-width: 360px; margin: 0; color: #656058; line-height: 1.7; font-size: 14px; }
.recognition__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.recognition__grid article { position: relative; min-height: 300px; padding: 30px 28px; background: var(--paper); overflow: hidden; display: flex; flex-direction: column; transition: background .4s ease, transform .4s ease; }
.recognition__grid article::after { content: ""; position: absolute; width: 170px; height: 170px; right: -90px; top: -90px; border: 1px solid rgba(147,101,42,.2); border-radius: 50%; transition: transform .6s ease; }
.recognition__grid article:hover { background: #f7f3eb; transform: translateY(-5px); z-index: 2; }
.recognition__grid article:hover::after { transform: scale(1.18); }
.recognition__grid article > span { color: var(--gold-deep); font-size: 10px; }
.recognition__grid h3 { margin: 58px 0 0; font-family: "Manrope", sans-serif; font-size: clamp(30px, 3vw, 46px); font-weight: 300; letter-spacing: -.05em; }
.recognition__grid article p { margin: auto 0 0; color: #625d55; font-size: 13px; line-height: 1.65; }
.recognition__grid cite { font-style: italic; }

.focus { background: var(--ink-soft); color: var(--paper); }
.focus__heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 70px; }
.focus__heading h2, .now h2, .contact h2 {
  margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(52px, 7vw, 104px); line-height: .98; letter-spacing: -.06em; font-weight: 300;
}
em { color: var(--gold-light); font-style: italic; font-weight: 300; }
.focus__heading > p { max-width: 360px; color: #948e83; line-height: 1.65; font-size: 14px; }
.focus__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.focus-card { position: relative; min-height: 520px; padding: 26px; background: #0f0e0c; overflow: hidden; transition: background .4s ease, transform .4s ease; }
.focus-card:hover { background: #18150f; transform: translateY(-5px); z-index: 2; }
.focus-card__top { display: flex; justify-content: space-between; color: #625d55; font-size: 11px; }
.focus-card__label { text-transform: uppercase; letter-spacing: .18em; color: var(--gold); }
.focus-card__image { position: absolute; top: 54px; left: 0; width: 100%; height: 255px; object-fit: cover; filter: saturate(.72) contrast(1.08); opacity: .72; mask-image: linear-gradient(black 48%,transparent 100%); transition: transform .9s cubic-bezier(.16,1,.3,1), opacity .5s ease; }
.focus-card:hover .focus-card__image { transform: scale(1.045); opacity: .9; }
.focus-card__orbit { position: absolute; z-index: 2; width: 240px; height: 240px; top: 74px; right: -72px; border: 1px solid rgba(217,168,79,.2); border-radius: 50%; transition: transform .7s ease; }
.focus-card:hover .focus-card__orbit { transform: rotate(35deg) scale(1.07); }
.focus-card__orbit::before, .focus-card__orbit::after { content: ""; position: absolute; border: 1px solid rgba(217,168,79,.13); border-radius: 50%; }
.focus-card__orbit::before { inset: 30px; border-left-color: var(--gold); }
.focus-card__orbit::after { inset: 66px; border-top-color: var(--gold-light); }
.focus-card__orbit span { position: absolute; top: 48%; left: -3px; width: 7px; height: 7px; background: var(--gold-light); border-radius: 50%; box-shadow: 0 0 20px var(--gold); }
.focus-card h3 { position: absolute; left: 26px; right: 26px; bottom: 150px; margin: 0; font-size: clamp(25px, 2.55vw, 38px); font-family: "Manrope", sans-serif; font-weight: 300; letter-spacing: -.04em; }
.focus-card > p { position: absolute; left: 26px; right: 44px; bottom: 42px; color: #8c867d; line-height: 1.55; font-size: 12px; }
.focus__cta { margin-top: 54px; display: flex; justify-content: center; }
.focus__cta .button { min-width: 230px; }

.statement { position: relative; min-height: 680px; background: var(--paper-deep); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.statement::after { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(222,215,202,.58); }
.statement__video { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .42; filter: saturate(.7) contrast(1.08); }
.statement__ring { position: absolute; z-index: 2; opacity: .1; transform: scale(4.8); }
.statement > .eyebrow, .statement__small, .statement blockquote { position: relative; z-index: 2; }
.statement > .eyebrow, .statement__source {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 9px 14px;
  border: 1px solid rgba(9,9,8,.14);
  background: rgba(240,236,227,.66);
  box-shadow: 0 8px 30px rgba(9,9,8,.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #211d17;
  font-size: 11px;
  font-weight: 600;
}
.statement blockquote { margin: 34px 0; font-family: "Manrope", sans-serif; font-size: clamp(48px, 7.5vw, 110px); line-height: 1.02; letter-spacing: -.06em; }
.statement blockquote em { color: var(--gold-deep); }
.statement__small { max-width: 520px; font-size: 14px; line-height: 1.7; color: #5c554b; }
.statement__source { color: #211d17; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .2em; }

.clients { position: relative; isolation: isolate; min-height: 680px; overflow: hidden; background: var(--ink); color: var(--paper); }
.clients::before { content: ""; position: absolute; z-index: -2; inset: 0; background: url("assets/photos/alejandro-clients-stage-2.jpg") center 45% / cover no-repeat; filter: saturate(.88) contrast(1.04); transform: scale(1.015); }
.clients::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg,rgba(5,5,4,.84) 0%,rgba(5,5,4,.54) 42%,rgba(5,5,4,.18) 72%,rgba(5,5,4,.32) 100%), linear-gradient(180deg,rgba(5,5,4,.16),rgba(5,5,4,.68)); }
.clients__content { min-height: 480px; display: flex; flex-direction: column; }
.clients .eyebrow { margin: 0; color: var(--gold-light); }
.clients h2 { margin: 34px 0 0; max-width: 760px; font-family: "Manrope",sans-serif; font-size: clamp(54px,7vw,104px); line-height: .95; letter-spacing: -.06em; font-weight: 300; }
.clients__intro { max-width: 470px; margin: 30px 0 48px; color: #b5aea3; font-size: 14px; line-height: 1.7; }
.clients__marquee { width: 100%; margin-top: auto; overflow: hidden; -webkit-mask-image: linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent); mask-image: linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent); }
.clients__marquee:focus-visible { outline: 1px solid var(--gold-light); outline-offset: 8px; }
.clients__track { display: flex; width: max-content; animation: client-flow 32s linear infinite; }
@media (hover: hover) { .clients__marquee:hover .clients__track { animation-play-state: paused; } }
.clients__marquee:focus-visible .clients__track { animation-play-state: paused; }
.clients__set { display: flex; align-items: flex-start; gap: 18px; padding: 8px 18px 22px 0; }
.clients__logo { position: relative; overflow: hidden; flex: 0 0 220px; height: 100px; padding: 23px 28px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(241,206,131,.72); background: var(--gold-light); backdrop-filter: blur(10px); box-shadow: 0 18px 46px rgba(0,0,0,.22); transition: background .35s ease, transform .35s ease; }
.clients__logo::before { content: ""; position: absolute; inset: -2% 4%; border-radius: 50%; background: radial-gradient(ellipse, rgba(255,249,229,.92) 0%, rgba(255,244,207,.52) 42%, rgba(255,244,207,0) 78%); filter: blur(12px); opacity: .82; transform: scale(1); transition: opacity .35s ease, transform .45s ease; pointer-events: none; }
.clients__logo:nth-child(2n) { margin-top: 15px; }
.clients__logo:nth-child(3n) { margin-top: 6px; }
.clients__logo:nth-child(3), .clients__logo:nth-child(5) { flex-basis: 195px; }
.clients__logo:nth-child(4), .clients__logo:nth-child(6) { flex-basis: 245px; }
.clients__logo:hover { background: #f7dda4; transform: scale(1.035); z-index: 1; }
.clients__logo:hover::before { opacity: 1; transform: scale(1.14); }
.clients__logo img { position: relative; z-index: 1; display: block; width: auto; max-width: min(72%,220px); max-height: 54px; object-fit: contain; filter: grayscale(1) contrast(1.08); opacity: .9; transition: opacity .35s ease, transform .35s ease; }
.clients__logo:hover img { opacity: 1; transform: scale(1.035); }

.principles { position: relative; isolation: isolate; overflow: hidden; background: #080706; color: var(--paper); }
.principles::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -4%;
  background: url("assets/photos/alejandro-approach-stage.jpeg") 84% 60% / auto 150% no-repeat;
  filter: saturate(.72) contrast(1.08);
  animation: approach-drift 18s ease-in-out infinite alternate;
}
.principles::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,7,6,.97) 0%, rgba(7,7,6,.9) 38%, rgba(7,7,6,.56) 72%, rgba(7,7,6,.38) 100%),
    linear-gradient(180deg, rgba(7,7,6,.34), rgba(7,7,6,.64));
}
.principles .section-label { color: var(--paper); }
.principles .section-label span, .principles .principle__number { color: var(--gold-light); }
.principles .section-label::after, .principles .principles__list, .principles .principle { border-color: var(--line-dark); }
.principles .section-label::after { background: var(--line-dark); }
.principles .principle p { color: #bbb4a8; }
.principles--compact { padding-top: clamp(80px, 8vw, 120px); padding-bottom: clamp(80px, 8vw, 120px); }
.principles--compact .section-label { margin-bottom: 55px; }
.principles--compact .principle { min-height: 105px; }
.principles__list { border-top: 1px solid var(--line); }
.principle { display: grid; grid-template-columns: 80px 1fr 1fr; align-items: center; gap: 30px; min-height: 140px; border-bottom: 1px solid var(--line); position: relative; }
.principle__number { color: var(--gold-deep); font-size: 10px; }
.principle h3 { font-family: "Manrope", sans-serif; margin: 0; font-size: clamp(34px, 4.5vw, 67px); font-weight: 300; letter-spacing: -.05em; transition: transform .35s ease; }
.principle p { font-size: 14px; color: #656058; }
.principle__line { position: absolute; left: 0; right: 100%; bottom: -1px; height: 1px; background: var(--gold); transition: right .6s ease; }
.principle:hover .principle__line { right: 0; }
.principle:hover h3 { transform: translateX(12px); }

.gallery { position: relative; min-height: 0; background: var(--ink); overflow: hidden; }
.gallery__swipe { position: absolute; z-index: 3; top: 26px; right: clamp(22px,4vw,68px); margin: 0; color: var(--gold-light); font-size: 9px; text-transform: uppercase; letter-spacing: .2em; text-shadow: 0 2px 18px rgba(0,0,0,.8); pointer-events: none; }
.gallery__swipe span { margin-left: 12px; font-size: 15px; }
.gallery__track { display: flex; align-items: stretch; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; overscroll-behavior-x: contain; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--gold) #11100e; }
.gallery__track::-webkit-scrollbar { height: 4px; }
.gallery__track::-webkit-scrollbar-track { background: #11100e; }
.gallery__track::-webkit-scrollbar-thumb { background: var(--gold); }
.gallery__track:focus-visible { outline: 1px solid var(--gold); outline-offset: -5px; }
.gallery figure { position: relative; flex: 0 0 min(60vw, 860px); height: clamp(540px, 52vw, 720px); min-height: 0; margin: 0; overflow: hidden; background: var(--ink); border-right: 1px solid rgba(245,239,225,.12); scroll-snap-align: start; }
.gallery figure.gallery__item--portrait { flex-basis: min(38vw, 540px); }
.gallery__open { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: transparent; color: var(--paper); cursor: zoom-in; overflow: hidden; }
.gallery__open picture { position: absolute; inset: 0; display: block; }
.gallery img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.08); transition: transform 1.1s cubic-bezier(.16,1,.3,1), filter .6s ease; }
.gallery figure:nth-child(1) img { object-position: 50% 58%; }
.gallery figure:nth-child(2) img { object-position: 50% center; }
.gallery figure:nth-child(3) img { object-position: 34% center; }
.gallery figure:nth-child(4) img { object-position: 45% center; }
.gallery__open::after { display: none; }
.gallery__caption { display: none; }
.gallery__open:hover img, .gallery__open:focus-visible img { transform: scale(1.04); filter: saturate(.95) contrast(1.04); }
.gallery__open:focus-visible { outline: 1px solid var(--gold-light); outline-offset: -8px; }

.lightbox { width: 100vw; height: 100dvh; max-width: none; max-height: none; margin: 0; padding: 0; border: 0; background: rgba(5,5,4,.96); color: var(--paper); overflow: hidden; }
.lightbox::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(8px); }
.lightbox__stage { width: 100%; height: 100%; margin: 0; padding: clamp(58px,7vw,96px); display: flex; align-items: center; justify-content: center; }
.lightbox__stage img { display: block; max-width: 100%; max-height: 100%; object-fit: contain; box-shadow: 0 30px 100px rgba(0,0,0,.52); }
.lightbox__stage figcaption { position: absolute; left: clamp(22px,4vw,68px); bottom: 25px; color: #aaa399; font-size: 9px; text-transform: uppercase; letter-spacing: .2em; }
.lightbox__close { position: absolute; z-index: 2; top: 22px; right: clamp(22px,4vw,68px); padding: 8px 0; border: 0; border-bottom: 1px solid rgba(241,206,131,.4); background: transparent; color: var(--paper); font-size: 10px; text-transform: uppercase; letter-spacing: .18em; cursor: pointer; }
.lightbox__close span { margin-left: 12px; color: var(--gold-light); font-size: 18px; }

.testimonials { position: relative; isolation: isolate; background: var(--paper-deep); overflow: hidden; }
.testimonials::before { content: ""; position: absolute; z-index: 0; width: clamp(360px,42vw,640px); height: clamp(360px,42vw,640px); right: -13%; top: 5%; border: 2px solid rgba(147,101,42,.13); border-right-color: transparent; border-radius: 50%; box-shadow: inset 0 0 70px rgba(217,168,79,.05), 0 0 100px rgba(217,168,79,.06); animation: testimonial-orbit 22s linear infinite; pointer-events: none; }
.testimonials > * { position: relative; z-index: 1; }
.testimonials__heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 70px; }
.testimonials__heading h2 { margin: 0; font-family: "Manrope",sans-serif; font-size: clamp(52px,7vw,104px); line-height: .98; letter-spacing: -.06em; font-weight: 300; }
.testimonials__heading em { color: var(--gold-deep); }
.testimonials__heading > p { max-width: 350px; color: #656058; line-height: 1.7; }
.testimonials__swipe { width: max-content; margin: -42px 0 22px auto; color: var(--gold-deep); font-size: 9px; text-transform: uppercase; letter-spacing: .18em; }
.testimonials__swipe span { margin-left: 12px; font-size: 15px; }
.testimonials__grid { counter-reset: testimonial; display: flex; align-items: stretch; gap: 12px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scroll-padding-inline: 12px; overscroll-behavior-x: contain; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--gold-deep) transparent; border-top: 1px solid var(--line); padding: 16px 0 24px; }
.testimonials__grid::-webkit-scrollbar { height: 4px; }
.testimonials__grid::-webkit-scrollbar-track { background: transparent; }
.testimonials__grid::-webkit-scrollbar-thumb { background: var(--gold-deep); }
.testimonials__grid:focus-visible { outline: 1px solid var(--gold-deep); outline-offset: 6px; }
.testimonials blockquote { position: relative; overflow: hidden; counter-increment: testimonial; flex: 0 0 clamp(300px, 32vw, 440px); height: 310px; min-height: 0; scroll-snap-align: start; margin: 0; padding: 34px; border: 1px solid var(--line); background: rgba(240,236,227,.28); box-shadow: 0 14px 38px rgba(61,49,30,.04); display: flex; flex-direction: column; justify-content: space-between; transition: background .4s ease, transform .45s cubic-bezier(.16,1,.3,1), box-shadow .4s ease, border-color .4s ease; }
.testimonials blockquote:nth-child(even) { background: rgba(217,168,79,.065); }
.testimonials blockquote::before { content: "“"; position: absolute; right: 22px; top: -28px; color: rgba(147,101,42,.13); font-family: "Manrope",sans-serif; font-size: 142px; font-weight: 300; line-height: 1; pointer-events: none; transition: color .4s ease, transform .5s cubic-bezier(.16,1,.3,1); }
.testimonials blockquote::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg,var(--gold-deep),var(--gold-light)); transform: scaleX(.16); transform-origin: left; transition: transform .55s cubic-bezier(.16,1,.3,1); }
.testimonials blockquote:hover { background: rgba(255,249,234,.58); border-color: rgba(147,101,42,.34); transform: translateY(-8px) rotate(-.35deg); box-shadow: 0 24px 54px rgba(61,49,30,.12); }
.testimonials blockquote:nth-child(even):hover { transform: translateY(-8px) rotate(.35deg); }
.testimonials blockquote:hover::before { color: rgba(147,101,42,.22); transform: translate(-4px,4px) scale(1.04); }
.testimonials blockquote:hover::after { transform: scaleX(1); }
.testimonials blockquote p { position: relative; z-index: 1; margin: 0; padding-top: 24px; font-family: "Manrope",sans-serif; font-size: clamp(18px,1.65vw,25px); line-height: 1.42; letter-spacing: -.025em; }
.testimonials blockquote cite { position: relative; z-index: 1; color: var(--gold-deep); font-size: 10px; font-style: normal; text-transform: uppercase; letter-spacing: .18em; }
.testimonials blockquote cite::before { content: counter(testimonial, decimal-leading-zero) "  /  "; color: #7a746a; }

.now { background: var(--ink); color: var(--paper); padding-bottom: 0; overflow: hidden; }
.now__layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; }
.now__copy { padding-bottom: 12px; }
.now__copy p { color: #8e887e; line-height: 1.7; max-width: 450px; margin: 0 0 34px; }
.text-link--light { border-color: var(--line-dark); }
.ticker { margin: 120px calc(clamp(22px, 7vw, 112px) * -1) 0; border-top: 1px solid var(--line-dark); padding: 24px 0; white-space: nowrap; color: var(--gold-light); font-size: 12px; letter-spacing: .32em; overflow: hidden; }
.ticker div { width: max-content; animation: ticker 22s linear infinite; }

.contact { position: relative; isolation: isolate; overflow: hidden; background: var(--paper); display: grid; grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr); column-gap: clamp(80px, 8vw, 140px); row-gap: clamp(52px, 5vw, 72px); padding-top: clamp(120px, 13vw, 210px); padding-bottom: clamp(120px, 13vw, 210px); }
.contact > *:not(.contact__mark) { position: relative; z-index: 1; }
.contact__section-label { grid-column: 1 / -1; margin-bottom: 0; }
.contact__mark { position: absolute; z-index: 0; right: clamp(-210px,-10vw,-100px); bottom: clamp(-230px,-12vw,-120px); width: clamp(420px,42vw,680px); height: clamp(420px,42vw,680px); opacity: .1; pointer-events: none; filter: drop-shadow(0 0 42px rgba(217,168,79,.22)); animation: contact-mark-drift 12s ease-in-out infinite alternate; }
.contact__mark .mark { width: 100%; height: 100%; }
.contact__mark .mark__orbit, .contact__mark .mark__core { border-width: 2px; }
.contact__intro { max-width: 660px; }
.contact__intro h2 { margin-top: 0; }
.contact__intro > p { max-width: 550px; color: #686158; font-size: 15px; line-height: 1.8; }
.contact__intro > .eyebrow { color: var(--ink); }
.contact__lead { margin: 42px 0 0; }
.contact__availability { margin: 22px 0 0; }
.contact-direct { margin-top: 52px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; font-size: 12px; }
.contact-direct span { color: #756f66; }
.contact-direct a { color: var(--gold-deep); font-weight: 500; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 42px 30px; align-content: start; padding-top: 8px; }
.contact-form label { display: flex; flex-direction: column; gap: 12px; }
.contact-form label span { text-transform: uppercase; letter-spacing: .18em; font-size: 9px; font-weight: 500; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 0; border-bottom: 1px solid var(--line); padding: 16px 0; outline: none; background: transparent; border-radius: 0; color: var(--ink); resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--gold-deep); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #9a9489; }
.form-wide { grid-column: 1 / -1; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-form .button { margin-top: 8px; width: 100%; }
.form-note, .form-error { margin: -12px 0 0; font-size: 11px; line-height: 1.6; color: #756f66; }
.form-note a, .form-error a { color: var(--gold-deep); border-bottom: 1px solid rgba(147,101,42,.35); }
.contact-form.is-sending .button { opacity: .6; pointer-events: none; }
.form-success { grid-column: 1 / -1; border: 1px solid var(--line); padding: 46px; }
.form-success h3 { font-family: "Manrope", sans-serif; font-size: 34px; margin: 24px 0 12px; }
.form-success p { color: #6a645c; line-height: 1.6; }

footer { background: #050504; color: var(--paper); min-height: 240px; padding: 50px clamp(22px, 7vw, 112px); display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 30px; position: relative; }
footer > p { color: #777169; justify-self: center; }
.footer__top { font-size: 11px; border-bottom: 1px solid var(--line-dark); padding: 8px 0; }
.footer__copy { position: absolute; left: clamp(22px, 7vw, 112px); bottom: 24px; color: #4d4943; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.footer__copy a { color: #726b61; }

.legal-page { min-height: 100vh; background: var(--ink); color: var(--paper); }
.legal-header { min-height: 84px; padding: 0 clamp(22px,7vw,112px); border-bottom: 1px solid var(--line-dark); display: flex; align-items: center; justify-content: space-between; }
.legal-header > a:last-child { color: var(--gold-light); font-size: 11px; border-bottom: 1px solid rgba(241,206,131,.35); padding-bottom: 6px; }
.legal-content { width: min(900px,calc(100% - 44px)); margin: 0 auto; padding: clamp(90px,12vw,170px) 0; }
.legal-content h1 { margin: 24px 0 55px; font-family: "Manrope",sans-serif; font-weight: 300; font-size: clamp(52px,8vw,102px); line-height: .95; letter-spacing: -.06em; }
.legal-content > p:not(.eyebrow) { max-width: 700px; color: #aaa399; font-size: 16px; line-height: 1.8; }
.legal-content a { color: var(--gold-light); border-bottom: 1px solid rgba(241,206,131,.35); }
.legal-updated { margin-top: 50px; font-size: 11px !important; text-transform: uppercase; letter-spacing: .14em; }

@keyframes rise { to { opacity: 1; transform: translateY(0); } from { opacity: 0; transform: translateY(24px); } }
@keyframes markIn { from { opacity: 0; transform: scale(.88) rotate(-4deg); } to { opacity: .62; transform: scale(1) rotate(0); } }
@keyframes intro-mark { 0% { opacity: 0; filter: blur(12px) drop-shadow(0 0 0 rgba(217,168,79,0)); transform: scale(.72) rotate(-8deg); } 65% { opacity: 1; } 100% { opacity: 1; filter: blur(0) drop-shadow(0 0 34px rgba(217,168,79,.18)); transform: scale(1) rotate(0); } }
@keyframes intro-wordmark { to { opacity: 1; transform: none; } }
@keyframes intro-halo { to { opacity: 1; transform: scale(1); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes experience-orbit-turn { to { transform: rotate(360deg); } }
@keyframes breathe { 50% { opacity: .25; transform: scaleX(.55); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes approach-drift { from { transform: scale(1.01); } to { transform: scale(1.06); } }
@keyframes client-flow { to { transform: translateX(-50%); } }
@keyframes testimonial-orbit { to { transform: rotate(360deg); } }
@keyframes contact-mark-drift { from { transform: translate3d(0,0,0) rotate(-2deg); } to { transform: translate3d(-14px,-12px,0) rotate(1deg); } }
@keyframes experience-draw { to { clip-path: inset(0); } }
@keyframes experience-travel {
  0% { opacity: 0; offset-distance: 5%; }
  12% { opacity: 1; }
  82% { opacity: 1; }
  100% { opacity: 0; offset-distance: 92%; }
}
@keyframes experience-glow {
  0%, 100% { opacity: 0; transform: scale(.72); }
  42% { opacity: 1; transform: scale(1); }
}

@media (max-width: 900px) {
  .site-header { height: 72px; backdrop-filter: none; }
  .menu-button { display: flex; flex-direction: column; gap: 6px; border: 0; background: none; padding: 12px 0 12px 12px; z-index: 3; }
  .menu-button span { width: 25px; height: 1px; background: var(--paper); transition: transform .3s ease; }
  .nav { position: fixed; inset: 0; background: rgba(7,7,6,.98); flex-direction: column; justify-content: center; font-size: 26px; opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .3s ease, transform .3s ease; }
  .nav--open { opacity: 1; pointer-events: auto; transform: none; }
  .hero { grid-template-columns: 1fr; align-items: end; padding-top: 120px; padding-bottom: 100px; }
  .hero__copy { align-self: end; top: 0; }
  .hero h1 { font-size: clamp(68px, 18vw, 120px); }
  .hero__intro { max-width: 540px; }
  .hero__portrait {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: auto;
    opacity: 1 !important;
    animation: none;
    transform: none;
    border: 0;
    box-shadow: none;
  }
  .hero__video { opacity: .78; transform: scale(1.12); }
  .hero__portrait::after {
    background:
      linear-gradient(90deg, rgba(6,5,4,.72), rgba(6,5,4,.24) 78%),
      linear-gradient(180deg, rgba(6,5,4,.22), rgba(6,5,4,.82));
  }
  .hero__portrait-ring { display: none; }
  .hero__portrait .mark { width: min(48vw, 280px); right: -3%; bottom: 5%; opacity: .11; }
  .hero__footer { bottom: 26px; }
  .manifesto__content, .now__layout, .contact { grid-template-columns: 1fr; }
  .contact { column-gap: 90px; row-gap: 60px; }
  .contact__intro { max-width: 720px; }
  .contact__intro > p { max-width: 640px; }
  .manifesto__content--profile { grid-template-columns: minmax(230px,.8fr) 1.2fr; gap: 38px; }
  .profile-photo { min-height: 500px; }
  .manifesto__profile .display-copy { font-size: clamp(38px,6vw,56px); }
  .manifesto__profile .manifesto__detail { margin-top: 30px; font-size: 13px; line-height: 1.65; }
  .manifesto__detail { max-width: 600px; }
  .manifesto--experience .manifesto__detail { position: relative; z-index: 2; }
  .experience-orbit { left: 70%; top: 50%; width: min(82vw, 650px); height: min(82vw, 650px); opacity: 0; }
  .experience-orbit.is-visible { opacity: .78; }
  .recognition__heading { align-items: start; flex-direction: column; gap: 30px; }
  .recognition__grid { grid-template-columns: 1fr 1fr; }
  .recognition__grid article { min-height: 250px; }
  .focus__heading { align-items: start; flex-direction: column; gap: 30px; }
  .focus__cards { grid-template-columns: repeat(3, 1fr); }
  .focus-card { min-height: 500px; padding: 18px; }
  .focus-card__top { font-size: 9px; }
  .focus-card__image { top: 48px; height: 220px; }
  .focus-card__orbit { width: 210px; height: 210px; top: 72px; right: -75px; }
  .focus-card h3 { left: 18px; right: 18px; bottom: 150px; font-size: clamp(20px, 3vw, 28px); }
  .focus-card > p { left: 18px; right: 24px; bottom: 38px; font-size: 11px; line-height: 1.45; }
  .principle { grid-template-columns: 50px 1fr; padding: 28px 0; }
  .principle p { grid-column: 2; margin: 0; }
  .statement { min-height: 600px; }
  .gallery figure { flex-basis: 74vw; }
  .gallery figure.gallery__item--portrait { flex-basis: 48vw; }
  .testimonials__heading { align-items: start; flex-direction: column; }
}

@media (max-width: 560px) {
  .brand { letter-spacing: .16em; font-size: 9px; }
  .brand__wordmark { gap: 3px; }
  .brand__descriptor { font-size: 6px; letter-spacing: .3em; }
  .hero { padding-left: 22px; padding-right: 22px; }
  .hero__eyebrow { line-height: 1.7; max-width: 300px; margin-bottom: 22px; }
  .hero h1 { font-size: 17vw; line-height: .9; }
  .hero__intro { margin: 30px 0; font-size: 15px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero__footer > span:first-child { display: none; }
  .hero__footer { justify-content: flex-end; }
  .section { padding-top: 90px; padding-bottom: 90px; }
  .section-label { margin-bottom: 52px; }
  .section-label::after { margin-left: 5px; }
  .display-copy { font-size: 43px; }
  .manifesto--experience { min-height: 620px; padding-top: 78px; padding-bottom: 70px; }
  .manifesto--experience .section-label { margin-bottom: 46px; }
  .manifesto--experience .manifesto__content { gap: 38px; }
  .experience-orbit { width: 125vw; height: 125vw; left: 78%; top: 50%; }
  .experience-orbit.is-visible { opacity: .52; }
  .manifesto__content--profile { grid-template-columns: 1fr; }
  .profile-photo { min-height: 440px; }
  .manifesto__profile .display-copy { font-size: 43px; }
  .manifesto__profile .manifesto__detail { font-size: 15px; line-height: 1.75; }
  .profile-credentials { grid-template-columns: 1fr; }
  .recognition__heading h2 { font-size: 46px; }
  .recognition__grid { grid-template-columns: 1fr; }
  .recognition__grid article { min-height: 235px; }
  .focus__heading h2, .now h2, .contact h2 { font-size: 48px; }
  .focus__cards { grid-template-columns: 1fr; }
  .focus-card { padding: 24px; min-height: 560px; }
  .focus-card__image { height: 300px; }
  .focus-card__orbit { width: 250px; height: 250px; top: 88px; }
  .focus-card h3 { left: 24px; right: 24px; bottom: 158px; font-size: 34px; }
  .focus-card > p { left: 24px; right: 40px; bottom: 46px; font-size: 13px; line-height: 1.55; }
  .focus__cta { margin-top: 42px; }
  .statement { min-height: 540px; padding-top: 75px; padding-bottom: 75px; }
  .statement blockquote { font-size: 46px; }
  .statement__ring { transform: scale(3.4); }
  .clients { min-height: 780px; }
  .clients::before { background-image: url("assets/photos/alejandro-clients-mobile.png"); background-position: center 42%; filter: saturate(.96) contrast(1.03); transform: none; }
  .clients::after { background: linear-gradient(180deg,rgba(5,5,4,.32),rgba(5,5,4,.76)); }
  .clients h2 { font-size: 51px; }
  .clients__intro { margin-bottom: 42px; }
  .clients__logo { flex-basis: 185px; height: 88px; padding: 20px 18px; }
  .clients__logo:nth-child(3), .clients__logo:nth-child(5) { flex-basis: 170px; }
  .clients__logo:nth-child(4), .clients__logo:nth-child(6) { flex-basis: 205px; }
  .clients__logo img { max-width: 78%; max-height: 42px; }
  .principle h3 { font-size: 40px; }
  .principle p { line-height: 1.55; }
  .client-list { margin-top: 45px; gap: 14px 24px; }
  .gallery figure, .gallery figure.gallery__item--portrait { flex-basis: 86vw; height: 72svh; min-height: 500px; }
  .gallery figure.gallery__item--golden img { object-position: center 35%; filter: saturate(.9) contrast(1.04); }
  .gallery__swipe { top: 20px; right: 22px; }
  .gallery__caption { left: 22px; bottom: 20px; }
  .lightbox__stage { padding: 64px 14px 54px; }
  .principles--compact { padding-top: 70px; padding-bottom: 70px; }
  .principles::before { inset: -3%; background-position: 56% 56%; background-size: auto 118%; opacity: .82; }
  .principles::after {
    background:
      linear-gradient(90deg, rgba(7,7,6,.9), rgba(7,7,6,.58)),
      linear-gradient(180deg, rgba(7,7,6,.46), rgba(7,7,6,.82));
  }
  .testimonials__swipe { margin: -30px 0 18px; }
  .testimonials::before { right: -62%; top: 10%; opacity: .48; }
  .testimonials blockquote { flex-basis: min(82vw, 360px); height: 260px; min-height: 0; padding: 28px; }
  .now__layout { gap: 50px; }
  .ticker { margin-top: 80px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact { row-gap: 52px; padding-top: 105px; padding-bottom: 105px; }
  .contact__mark { right: -190px; bottom: -135px; width: 430px; height: 430px; opacity: .075; }
  .contact__lead { margin-top: 34px; }
  .contact-direct { margin-top: 42px; }
  .form-wide { grid-column: auto; }
  footer { grid-template-columns: 1fr; justify-items: start; padding-bottom: 80px; }
  footer > p { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body.intro-pending { overflow: auto; }
  body.intro-pending main { opacity: 1; }
  .site-intro { display: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .impossible-word { color: var(--ink); -webkit-text-stroke-color: transparent; filter: none; transform: none; text-shadow: none; }
  .experience-orbit { opacity: .65; transform: translate(-50%, -50%); }
  .experience-orbit__ring { clip-path: inset(0); }
  .experience-orbit__traveler { display: none; }
  .experience-orbit__glow { opacity: .45; }
  .clients__marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .clients__track { animation: none; }
  .clients__set[aria-hidden="true"] { display: none; }
}
