:root {
  --ink: #0a0a0a;
  --paper: #f4f0e8;
  --white: #ffffff;
  --teal: #007f88;
  --red: #ef2838;
  --cyan: #05b9e8;
  --violet: #75258c;
  --orange: #f04b0b;
  --muted: #aaa7a0;
  --page-accent: var(--teal);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  background: var(--ink);
  color: var(--white);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 120px);
}
.eyebrow {
  margin: 0 0 24px;
  color: var(--page-accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 8.6vw, 8rem);
  line-height: .84;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.hero-lead {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  line-height: 1.45;
}
.hero-media {
  position: relative;
  overflow: hidden;
  background: #171717;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  filter: grayscale(1) contrast(1.08);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.7));
  pointer-events: none;
}
.photo-note {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 18px;
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: .72rem;
  letter-spacing: .06em;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--white);
}
.project-card {
  min-height: 320px;
  padding: clamp(34px, 6vw, 80px);
  border-right: 1px solid #ddd8cf;
  border-bottom: 1px solid #ddd8cf;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.project-card:nth-child(2n) { border-right: 0; }
.project-number {
  display: block;
  margin-bottom: 62px;
  color: var(--page-accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
}
.project-card h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.5vw, 4.7rem);
  line-height: .92;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.project-card p { max-width: 540px; margin-bottom: 0; }
.project-card:hover, .project-card:focus-visible { background: var(--red); color: var(--white); outline: 0; }

.page-masterclasses { --page-accent: #e12828; }
.page-speaking { --page-accent: #d9ad35; }
.page-arregladores { --page-accent: #05b9e8; }
.page-divino { --page-accent: #ef4c73; }

.page-hero {
  min-height: 72vh;
  padding: clamp(52px, 9vw, 130px) clamp(28px, 9vw, 130px);
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: var(--white);
  background: var(--ink);
}
.page-hero h1 { margin-bottom: 24px; }
.page-hero p { max-width: 760px; margin-bottom: 0; font-size: clamp(1.1rem, 2vw, 1.5rem); }
.page-hero-logo { width: min(520px, 85vw); margin-bottom: 46px; }

.content {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 130px) 0;
}
.content-narrow { width: min(820px, calc(100% - 48px)); }
.intro {
  max-width: 980px;
  margin-bottom: 80px;
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  line-height: 1.25;
  letter-spacing: -.025em;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 7vw, 100px); }
.section { margin-bottom: 88px; }
.section:last-child { margin-bottom: 0; }
.section h2 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 4.6vw, 4.5rem);
  line-height: .95;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.section h3 { margin: 32px 0 10px; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.section p { max-width: 780px; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 70px 0 0; background: #cfc9be; }
.fact { min-height: 170px; padding: 28px; background: var(--white); }
.fact strong { display: block; color: var(--page-accent); font-size: clamp(2rem, 4vw, 4rem); line-height: 1; }
.fact span { display: block; margin-top: 14px; }
.credits { padding: 0; list-style: none; }
.credits li { padding: 12px 0; border-bottom: 1px solid #cfc9be; }
.external-link { color: var(--page-accent); font-weight: 800; text-underline-offset: 5px; }

.next-project {
  display: block;
  padding: clamp(50px, 8vw, 110px);
  background: var(--page-accent);
  color: var(--ink);
  text-decoration: none;
}
.next-project small { display: block; margin-bottom: 18px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.next-project strong { display: block; font-size: clamp(2.4rem, 7vw, 7rem); line-height: .9; letter-spacing: -.06em; text-transform: uppercase; }

.site-footer {
  min-height: 86px;
  padding: 18px clamp(22px, 5vw, 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  background: #000;
  color: #fff;
  font-size: .8rem;
}
.site-footer a { color: #fff; text-decoration: none; }
.footer-socials { display: flex; gap: 12px; }
.social-icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #575757;
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 800;
}
.footer-brand { display: flex; align-items: center; gap: 9px; }
.footer-brand img { width: 158px; height: auto; image-rendering: auto; }
.footer-divider { width: 1px; height: 28px; background: #454545; }

@media (max-width: 780px) {
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: 68vh; padding: 58px 26px; }
  .hero-media { height: 54vh; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 250px; border-right: 0; }
  .project-number { margin-bottom: 36px; }
  .page-hero { min-height: 66vh; padding: 58px 24px; }
  .content, .content-narrow { width: min(100% - 36px, 820px); }
  .two-col, .facts { grid-template-columns: 1fr; }
  .intro { margin-bottom: 58px; }
  .site-footer { gap: 14px; }
  .footer-divider { display: none; }
}
