:root {
  color-scheme: light;
  --ink: #10100e;
  --muted: #625f57;
  --line: rgba(16, 16, 14, 0.14);
  --paper: #ffffff;
  --soft: #f3f1eb;
  --acid: #dfff31;
  --hot: #ff4d1f;
  --outsider: #ff4d1f;
  --blue: #0b73ff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.mark__glyph {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
}

.mark__glyph img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.mark__text,
.nav {
  font-size: 13px;
}

.nav {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  font-weight: 800;
}

.nav a:hover {
  color: var(--hot);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  min-height: 38px;
  padding: 0 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero,
.about-hero-grid,
.about-brief,
.portfolio-home,
.territory,
.contact,
.page-hero,
.about-page,
.portfolio-page,
.project-page {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(310px, 520px);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: clamp(56px, 8vw, 104px) 0 54px;
}

.hero__copy {
  max-width: 880px;
}

.hero__subtitle {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin: 0 0 18px;
  padding: 4px 7px;
  background: var(--acid);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.role-title,
.page-hero h1,
.about-brief h2,
.portfolio-home h2,
.territory h2,
.contact h2,
.project-title {
  font-family: "Archivo Black", Impact, sans-serif;
  line-height: 0.96;
  text-transform: uppercase;
}

.role-title {
  margin: 0;
  font-size: clamp(34px, 5.8vw, 78px);
}

.role-title span,
.role-title strong {
  display: block;
}

.role-title s {
  position: relative;
  text-decoration: none;
}

.role-title s::after {
  display:none;
  position: absolute;
  left: -0.02em;
  right: -0.06em;
  top: 0.42em;
  height: 0.36em;
  content: "";
  background:
    url("data:image/svg+xml,%3Csvg width='420' height='56' viewBox='0 0 420 56' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 29 C45 12 78 39 124 23 C174 7 219 42 263 22 C315 2 358 36 416 17' stroke='%23ff4d1f' stroke-width='11' stroke-linecap='round' fill='none' opacity='.94'/%3E%3Cpath d='M8 36 C54 22 99 44 138 29 C187 12 227 43 280 30 C326 19 366 34 412 24' stroke='%23ff4d1f' stroke-width='5' stroke-linecap='round' fill='none' opacity='.58'/%3E%3C/svg%3E")
      center / 100% 100% no-repeat;
  transform: rotate(-1.2deg);
  pointer-events: none;
}

.role-title strong {
  color: var(--outsider);
  font-weight: inherit;
}

.hero__portrait {
  margin: 0;
}

.hero__portrait img {
  display: block;
  width: min(100%, 520px);
  margin-left: auto;
}

.marquee {
  overflow: hidden;
  border-block: 0px solid var(--line);
  background: var(--soft);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: drift 28s linear infinite;
}

.marquee span {
  padding: 18px 24px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(22px, 4vw, 52px);
  text-transform: uppercase;
  white-space: nowrap;
}

.about-brief,
.portfolio-home,
.territory,
.contact,
.about-page,
.portfolio-page,
.project-page {
padding: clamp(38px, 4vw, 64px) 0 clamp(46px, 6vw, 86px) 0;}

.about-brief h2,
.portfolio-home h2,
.territory h2,
.contact h2 {
  max-width: 960px;
  margin-bottom: 34px;
  font-size: clamp(24px, 4vw, 68px);
}

.text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 5vw, 72px);
  max-width: 980px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(14px, 2vw, 14px);
  line-height: 1.5;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ink);
  font-weight: 900;
  overflow: hidden;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--hot);
  transform: translateY(105%);
  transition: transform 180ms ease;
}

.button--primary {
  background: var(--ink);
  color: var(--paper);
}

.button--primary:hover,
.button--wide:hover {
  border-color: var(--hot);
  color: var(--ink);
  transform: translateY(-2px);
}

.button--primary:hover::after,
.button--wide:hover::after {
  transform: translateY(0);
}

.button--primary:active,
.button--wide:active {
  transform: translateY(0);
}

.button--ghost:hover {
  border-color: var(--hot);
  color: var(--hot);
}

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

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading a:hover h2 {
  color: var(--hot);
}

.button--wide {
  width: 100%;
  margin-top: 18px;
  background: var(--ink);
  color: var(--paper);
}

.about-copy a,
.timeline a,
.project-copy a,
.text-grid a {
  position: relative;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  background-image: linear-gradient(var(--acid), var(--acid));
  background-position: 0 90%;
  background-repeat: no-repeat;
  background-size: 100% 0.38em;
  transition:
    background-size 160ms ease,
    color 160ms ease;
}

.about-copy a:hover,
.timeline a:hover,
.project-copy a:hover,
.text-grid a:hover {
  color: var(--ink);
  background-size: 100% 100%;
}

.featured-work,
.portfolio-grid {
  display: grid;
  gap: 1px;
  background: var(--ink);
}

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

.work-card,
.project-card {
  background: var(--paper);
}

.work-card {
  display: grid;
  grid-template-rows: minmax(280px, 48vh) auto;
  min-height: 520px;
}

.work-card__image,
.project-card__image,
.project-media {
  overflow: hidden;
  background: var(--soft);
}

.work-card img,
.project-card img,
.project-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.8) contrast(1.04);
  transition:
    filter 180ms ease,
    transform 220ms ease;
}

.work-card:hover img,
.project-card:hover img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.025);
}

.work-card__body,
.project-card__body {
  padding: clamp(20px, 4vw, 34px);
}

.work-card__number,
.work-card__meta,
.project-card small,
.project-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.work-card h3,
.project-card h2 {
  margin: 18px 0 12px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(32px, 5vw, 66px);
  line-height: 0.96;
  text-transform: uppercase;
}

.work-card p,
.project-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

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

.project-card {
  min-height: 100%;
}

.project-card__body {
  min-height: 148px;
}

.project-card__image {
  aspect-ratio: 4 / 3;
}

.project-card h2 {
  font-size: clamp(25px, 3vw, 38px);
}

.project-image--ballesol {
  object-position: center top;
}

.project-image--johnnie-walker {
  object-position: center 64%;
}

.project-image--miravia {
  object-position: center top;
}

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

.territory-band {
  background: var(--soft);
  margin: clamp(16px, 3vw, 42px) 0;
}

.territory-band .territory {
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(34px, 5vw, 64px);
}

.territory article {
  min-height: 230px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
}

.territory span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--blue);
  font-weight: 900;
}

.territory h3 {
  margin-bottom: 14px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  text-transform: uppercase;
}

.territory p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

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

.contact--home {
  min-height: 0;
  padding-bottom: clamp(36px, 5vw, 64px);
}

.contact--small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

.contact--small p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.social-mini {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--ink);
  font-weight: 900;
}

.footer-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 900;
}

.footer-line a {
  position: relative;
  padding: 3px 0;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.footer-line a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.35em;
  z-index: -1;
  content: "";
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.footer-line a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.footer-line a:hover::after {
  transform: scaleX(1);
}

.footer-line span {
  color: var(--muted);
  font-weight: 400;
}

.contact__link {
  width: fit-content;
  border-bottom: 6px solid var(--hot);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(28px, 7vw, 88px);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.contact__phone {
  display: block;
  width: fit-content;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 920px;
  background: var(--line);
}

.contact-method {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--paper);
  font-size: clamp(15px, 1.7vw, 17px);
  font-weight: 900;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.contact-method:hover {
  background: var(--hot);
  color: var(--ink);
  transform: translateY(-2px);
}

.contact-method span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--ink);
  font-size: 20px;
}

.contact-method strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.page-hero {
  padding: clamp(68px, 10vw, 128px) 0 42px;
}

.page-hero h1,
.project-title {
  max-width: 1040px;
  margin-bottom: 22px;
  font-size: clamp(40px, 7vw, 92px);
}

.page-hero h1,
.about-hero-grid .page-hero h1 {
  font-size: clamp(34px, 5.2vw, 68px);
}

.page-hero p,
.project-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.about-layout,
.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
}

.about-hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 430px);
  align-items: center;
  padding: clamp(14px, 2.6vw, 34px) 0 44px;
}

.about-hero-grid .page-hero {
  width: auto;
  margin: 0;
  padding-bottom: 0;
}

.about-hero-grid .page-hero h1 {
  max-width: 820px;
  margin-bottom: 16px;
}

.about-hero-grid .page-hero p {
  max-width: 560px;
  font-size: clamp(16px, 1.7vw, 20px);
}

.about-portrait-hero img {
  display: block;
  width: min(100%, 460px);
  margin-left: auto;
  mix-blend-mode: multiply;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  font-weight: 900;
}

.social-links a:hover {
  background: var(--ink);
  color: var(--paper);
}

.about-photo img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  filter: grayscale(1) contrast(1.04);
}

.about-layout--single {
  display: block;
  max-width: 980px;
}

.about-copy {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.timeline {
  margin-top: 44px;
  border-left: 2px solid var(--line);
  padding-left: 28px;
}

.timeline article {
  position: relative;
  margin-bottom: 34px;
}

.timeline article::before {
  position: absolute;
  top: 5px;
  left: -36px;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--ink);
}

.timeline time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline h3 {
  margin: 6px 0 8px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.timeline p {
  color: var(--muted);
  line-height: 1.5;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: var(--line);
}

.about-gallery figure {
  position: relative;
  margin: 0;
  background: var(--paper);
}

.about-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-gallery figcaption {
  padding: 12px 14px;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-gallery figcaption::after {
  display: block;
  width: 92%;
  height: 13px;
  margin-top: 4px;
  content: "";
  background:
    url("data:image/svg+xml,%3Csvg width='280' height='22' viewBox='0 0 280 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 14 C45 4 88 18 133 10 C181 1 220 16 277 8' stroke='%2310100e' stroke-width='6' stroke-linecap='round' fill='none'/%3E%3C/svg%3E")
      left center / 100% 100% no-repeat;
}

.project-media-list {
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-top: 42px;
}

.project-media-list iframe,
.project-media-list img {
  display: block;
  width: 100%;
  border: 0;
  background: var(--soft);
}

.project-media-list iframe {
  aspect-ratio: 16 / 9;
  height: auto;
}

.project-media-list img {
  height: auto;
  object-fit: cover;
}

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

.project-columns.media-columns--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-columns a {
  display: block;
}

.project-case {
  max-width: 940px;
}

.project-copy {
  max-width: 760px;
}

.project-copy p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.project-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin-top: 56px;
  background: transparent;
}

.project-nav a {
  padding: 14px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(15px, 1.7vw, 19px);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    transform 160ms ease,
    border-color 160ms ease;
}

.project-nav a:last-child {
  text-align: right;
}

.project-nav span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.project-nav a:hover {
  border-color: var(--hot);
  color: var(--hot);
}

.project-nav a:first-child:hover {
  transform: translateX(-4px);
}

.project-nav a:last-child:hover {
  transform: translateX(4px);
}

@keyframes drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 860px) {
  .hero,
  .about-layout,
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero__portrait {
    order: -1;
  }

  .hero__portrait img {
    width: min(70vw, 310px);
    margin-inline: 0 auto;
  }

  .text-grid,
  .featured-work,
  .territory__list,
  .about-gallery {
    grid-template-columns: 1fr;
  }

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

  .project-columns,
  .project-columns.media-columns--three {
    grid-template-columns: 1fr;
  }

  .project-nav {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    margin-top: 38px;
  }

  .project-nav a {
    flex: 1;
    padding: 10px 0;
    font-size: 13px;
    line-height: 1.15;
  }

  .project-nav span {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .button {
    margin-top: 20px;
  }

  .territory-band {
    margin: 14px 0;
  }

  .territory-band .territory {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .territory h2 {
    margin-bottom: 22px;
  }

  .territory article {
    min-height: 0;
    padding: 20px;
  }

  .territory span {
    margin-bottom: 14px;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: center;
    padding-inline: 14px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 48px rgba(16, 16, 14, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
    text-transform: uppercase;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .hero,
  .about-hero-grid,
  .about-brief,
  .portfolio-home,
  .territory,
  .contact,
  .page-hero,
  .about-page,
  .portfolio-page,
  .project-page {
    width: min(100% - 28px, var(--max));
  }

  .role-title {
    font-size: clamp(34px, 12vw, 58px);
  }

  .button {
    width: 100%;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .project-media-list {
    grid-template-columns: 1fr;
  }

  .work-card {
    min-height: 460px;
  }

  .contact--small {
    display: block;
  }

  .contact--small .button {
    margin-top: 16px;
  }
}


.role-title .strike{position:relative;display:inline-block;}
.role-title .strike::after{content:"";position:absolute;left:-0.05em;right:-0.05em;top:50%;height:8px;background:var(--hot);transform:rotate(-2deg);}
.hero__portrait{background:none;border:none;box-shadow:none;}
.work-card h3,.project-card h2{font-size:clamp(20px,2vw,30px);}
.work-card img,.project-card img,.project-media img{image-rendering:auto;filter:none;}
.territory h2 + p.section-subtitle{max-width:720px;margin:-10px 0 40px;color:var(--muted);font-size:24px;font-weight:600;}
.contact-method span{display:none;}
.contact-method{justify-content:center;}
.about-page,.project-page{padding-top:40px;}
.about-copy,.project-copy p,.timeline p{font-size:13px;}
.about-gallery figcaption::after{display:none;}
.contact--small .button,.social-mini{display:none;}
.portfolio-grid{grid-template-columns:repeat(3,minmax(0,1fr));background:transparent;gap:24px;}
.project-case{max-width:1100px;}
.project-nav a{transition:color .2s ease,transform .2s ease,border-color .2s ease;}
.project-columns a img{transition:transform .3s ease,filter .3s ease;}
.project-columns a:hover img{transform:scale(1.04);filter:saturate(1.08) contrast(1.04);}
.project-columns img{transition:transform .25s ease,filter .25s ease;}
.project-columns img:hover{transform:scale(1.025);filter:saturate(1.08) contrast(1.04);}
.lightbox{position:fixed;inset:0;background:rgba(0,0,0,.9);display:flex;align-items:center;justify-content:center;z-index:999;padding:40px;}
.lightbox img{max-width:95vw;max-height:95vh;}
@media(max-width:860px){.portfolio-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:560px){.portfolio-grid{grid-template-columns:1fr;}}
.strike-text{text-decoration:line-through;text-decoration-color:var(--accent);text-decoration-thickness:10px;}
.hero__portrait,.hero__portrait img{border:none!important;box-shadow:none!important;background:none!important;}
.about-page{padding-left:clamp(24px,5vw,72px);padding-right:clamp(24px,5vw,72px);}
.portfolio-intro,.portfolio-grid{margin-top:0!important;}
.footer-actions{display:flex;align-items:center;gap:14px;}
.footer-mail{font-weight:700;text-decoration:none;color:var(--ink);}
.social-mini.linkedin{font-size:18px;text-decoration:none;}
.hero--home{padding-top:clamp(28px,4.5vw,62px);}
@media(max-width:560px){.hero--home{padding-top:24px;}}
.contact-method{background:var(--paper);transition:color 160ms ease;}
.contact-method:hover{background:var(--paper);color:var(--ink);transform:none;}
.contact-method strong{
  background-image:linear-gradient(var(--acid),var(--acid));
  background-position:0 90%;
  background-repeat:no-repeat;
  background-size:0 0.35em;
  transition:background-size 160ms ease;
}
.contact-method:hover strong{background-size:100% 0.35em;}
.work-card h3{
  width:fit-content;
  background-image:linear-gradient(var(--acid),var(--acid));
  background-position:0 90%;
  background-repeat:no-repeat;
  background-size:0 0.35em;
  transition:background-size 180ms ease,color 180ms ease;
}
.work-card:hover h3{background-size:100% 0.35em;}
.work-card img{transition:filter 220ms ease,transform 260ms ease;}
.work-card:hover img{transform:scale(1.04) rotate(-.35deg);}
.contact--home{border-top:0;padding-top:clamp(26px,3vw,42px);}

/* Animaciones solo home */
body.home-animated::before{
  position:fixed;
  top:0;
  left:0;
  z-index:80;
  width:calc(var(--scroll-progress,0) * 100%);
  height:4px;
  content:"";
  background:var(--hot);
}

body.home-animated .site-header{
  transition:
    padding 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

body.home-animated.has-scrolled .site-header{
  padding-top:12px;
  padding-bottom:12px;
  box-shadow:0 14px 40px rgba(16,16,14,.07);
}

body.home-animated .hero--home .eyebrow,
body.home-animated .hero--home .role-title span,
body.home-animated .hero--home .role-title strong,
body.home-animated .hero--home .hero__subtitle{
  animation:home-rise 680ms cubic-bezier(.2,.8,.2,1) both;
}

body.home-animated .hero--home .role-title span:nth-child(1){animation-delay:80ms;}
body.home-animated .hero--home .role-title span:nth-child(2){animation-delay:150ms;}
body.home-animated .hero--home .role-title span:nth-child(3){animation-delay:220ms;}
body.home-animated .hero--home .role-title span:nth-child(4){animation-delay:290ms;}
body.home-animated .hero--home .role-title strong{animation-delay:380ms;}
body.home-animated .hero--home .hero__subtitle{animation-delay:460ms;}

body.home-animated .hero__portrait img{
  transform:translate3d(0,calc(var(--hero-drift,0) * -18px),0);
  transition:transform 80ms linear;
  animation:home-portrait-pop 900ms cubic-bezier(.2,.8,.2,1) both;
}

body.home-animated .home-reveal{
  opacity:0;
  transform:translateY(36px);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(.2,.8,.2,1);
  transition-delay:calc(var(--reveal-order,0) * 70ms);
}

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

body.home-animated .marquee__track{
  animation-duration:20s;
}

body.home-animated .marquee:hover .marquee__track{
  animation-play-state:paused;
}

body.home-animated .work-card{
  position:relative;
  overflow:hidden;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

body.home-animated .work-card::after{
  position:absolute;
  inset:0;
  content:"";
  border:1px solid rgba(16,16,14,0);
  pointer-events:none;
  transition:border-color 220ms ease;
}

body.home-animated .work-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 60px rgba(16,16,14,.12);
}

body.home-animated .work-card:hover::after{
  border-color:rgba(16,16,14,.18);
}

body.home-animated .work-card__image img{
  transform-origin:center;
}

@keyframes home-rise{
  from{
    opacity:0;
    transform:translateY(28px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes home-portrait-pop{
  from{
    opacity:0;
    transform:translate3d(0,34px,0);
  }
  to{
    opacity:1;
    transform:translate3d(0,0,0);
  }
}

@media(prefers-reduced-motion:reduce){
  body.home-animated *,
  body.home-animated *::before,
  body.home-animated *::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    scroll-behavior:auto!important;
    transition-duration:.01ms!important;
  }

  body.home-animated .home-reveal{
    opacity:1;
    transform:none;
  }
}
