:root {
  --bg: #080a0d;
  --panel: #11161c;
  --panel-2: #171b20;
  --ink: #f4f1ea;
  --muted: #a8b1ba;
  --dim: #68727d;
  --line: #29333d;
  --cyan: #20e6d3;
  --lime: #c8ff3d;
  --copper: #c77b45;
  --blue: #4ea6ff;
  --wood: #8a4e2c;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(135deg, rgba(32, 230, 211, 0.08), transparent 38%, rgba(199, 123, 69, 0.08));
  background-size: 44px 44px, 44px 44px, auto;
  opacity: 0.76;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent 0%, rgba(32, 230, 211, 0.08) 22%, transparent 42%),
    linear-gradient(245deg, transparent 5%, rgba(200, 255, 61, 0.045) 28%, transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 24%, rgba(255, 255, 255, 0.02));
  mix-blend-mode: screen;
  opacity: 0.68;
  transform: translate3d(-3%, 0, 0);
  animation: ambient-glass 18s ease-in-out infinite alternate;
}

body::selection {
  background: var(--cyan);
  color: #061012;
}

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

img {
  display: block;
  max-width: 100%;
}

@keyframes ambient-glass {
  from { transform: translate3d(-3%, 0, 0) skewX(-2deg); opacity: 0.48; }
  to { transform: translate3d(3%, 0, 0) skewX(2deg); opacity: 0.74; }
}

[hidden] {
  display: none !important;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: rgba(8, 10, 13, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}

.brand::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--lime), transparent);
  transform: scaleX(0.45);
  transform-origin: left;
  transition: transform 220ms ease;
}

.brand:hover::after {
  transform: scaleX(1);
}

.topbar nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

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

.lang-switch {
  min-width: 38px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
  border: 1px solid rgba(32, 230, 211, 0.36);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.lang-switch:hover {
  border-color: rgba(200, 255, 61, 0.62);
  color: var(--lime);
}

.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: 32px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 28px 56px;
  position: relative;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 28px 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 32px;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
}

.page-hero h1 {
  max-width: 780px;
  font-size: clamp(54px, 6.2vw, 96px);
}

.page-hero-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.page-hero-media.focus-bottom img {
  object-position: center 78%;
}

.hero::after {
  content: "AI HOUSE BRASIL";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 18px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.032);
  font-size: clamp(64px, 13vw, 188px);
  font-weight: 950;
  line-height: 0.75;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(72px, 7.8vw, 128px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  font-size: 24px;
  line-height: 1.12;
}

.lead,
.hero-statement,
.section-head p,
.proof-copy p,
.media-copy p,
.ecosystem p,
.founder-card p,
.sponsors p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-statement {
  max-width: 660px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.22;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  font-weight: 750;
  font-size: 14px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.program-snapshot span,
.brand-signal span,
.story-step,
.partner-track,
.stack-card,
.source-card,
.press-lead,
.event-notes > div,
.photo-frame,
.photo-tile,
.house-card,
.location-card,
.media-copy,
.studio-copy,
.timeline div,
.metric-band div,
.ecosystem-stats div,
.sponsor-grid div,
.closing-grid div,
.founder-card,
.forms-grid form,
.thanks {
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.02) 38%, rgba(32, 230, 211, 0.04)),
    rgba(17, 22, 28, 0.66);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(1.18);
}

.source-card,
.story-step,
.timeline div,
.sponsor-grid div,
.closing-grid div,
.ecosystem-stats div,
.program-snapshot span,
.metric-band div {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.source-card:hover,
.timeline div:hover,
.sponsor-grid div:hover,
.closing-grid div:hover,
.ecosystem-stats div:hover,
.program-snapshot span:hover,
.metric-band div:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 230, 211, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 28px 90px rgba(32, 230, 211, 0.1);
}

.button.primary {
  background: var(--cyan);
  color: #071012;
  border-color: var(--cyan);
}

.button.secondary {
  color: var(--ink);
}

.hero-media {
  margin: 0;
  border: 1px solid rgba(32, 230, 211, 0.42);
  background: #101317;
  padding: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(200, 255, 61, 0.28);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 260ms ease, transform 260ms ease;
}

.hero-media:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 255, 61, 0.7);
  box-shadow: 0 24px 70px rgba(32, 230, 211, 0.12);
}

.hero-media:hover::after {
  opacity: 1;
  transform: scale(1);
}

.media-badge {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 2;
  padding: 9px 12px;
  background: rgba(8, 10, 13, 0.78);
  border: 1px solid rgba(32, 230, 211, 0.52);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero-media img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
}

.hero-media figcaption,
.gallery-set figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.brand-signal {
  max-width: var(--max);
  margin: 28px auto 46px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.brand-signal span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(32, 230, 211, 0.1), rgba(255, 255, 255, 0.02));
}

.brand-signal span:first-child {
  color: var(--ink);
  border-color: rgba(32, 230, 211, 0.5);
}

.program-intro {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: end;
  border-top: 1px solid rgba(32, 230, 211, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.program-intro h2 {
  max-width: 700px;
  font-size: 38px;
}

.program-intro p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.52;
}

.program-snapshot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.program-snapshot span {
  min-height: 92px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--panel);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.program-snapshot strong {
  display: block;
  margin-bottom: 7px;
  color: var(--lime);
  font-size: 20px;
  line-height: 1;
}

.program-flow {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  margin-top: -8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.program-flow span {
  position: relative;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.program-flow span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 6px;
  height: 1px;
  background: rgba(32, 230, 211, 0.55);
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  max-width: var(--max);
  margin: 0 auto 46px;
  padding: 0 28px;
}

.metric-band div {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.metric-intro small {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-intro strong {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.12;
}

.story-arc {
  padding-top: 46px;
  padding-bottom: 42px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.75fr);
  gap: 12px;
  margin-top: 30px;
}

.story-photo {
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(32, 230, 211, 0.42);
  background: #030507;
}

.story-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  background: #07090c;
}

.story-step {
  min-height: 320px;
  padding: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(32, 230, 211, 0.08), rgba(32, 230, 211, 0)),
    var(--panel);
  transition: transform 220ms ease, border-color 220ms ease;
}

.story-step:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 230, 211, 0.62);
}

.story-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  background: var(--lime);
  color: #071012;
  font-size: 12px;
  font-weight: 950;
}

.story-step strong {
  display: block;
  margin-bottom: 14px;
  font-size: 22px;
}

.story-step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.partner-carousel {
  max-width: var(--max);
  margin: 0 auto 34px;
  padding: 0 28px;
  overflow: hidden;
}

.partner-head {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 18px;
}

.partner-head .eyebrow {
  max-width: 360px;
  font-size: 16px;
  line-height: 1.2;
}

.partner-head h2 {
  margin-bottom: 0;
  font-size: 40px;
  line-height: 1.08;
}

.partner-track {
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 1), rgba(8, 10, 13, 0) 12%, rgba(8, 10, 13, 0) 88%, rgba(8, 10, 13, 1)),
    #0d1116;
  overflow: hidden;
}

.partner-track div {
  width: max-content;
  display: flex;
  gap: 1px;
  animation: partner-marquee 28s linear infinite;
}

.partner-track span {
  min-width: 190px;
  min-height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.018);
}

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

.brand-logo.wordmark {
  font-size: 22px;
  letter-spacing: 0;
}

@keyframes partner-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.platform-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 32px;
  padding-bottom: 72px;
}

.stack-card {
  min-height: 380px;
  padding: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(32, 230, 211, 0.1), rgba(255, 255, 255, 0.015)),
    var(--panel);
  position: relative;
  overflow: hidden;
}

.stack-card::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--lime), transparent);
}

.stack-card::after {
  content: "AI HOUSE BRASIL";
  position: absolute;
  right: -10px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.045);
  font-size: 46px;
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.stack-card h2 {
  max-width: 500px;
  font-size: 36px;
}

.stack-card p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.52;
}

.code-card {
  background:
    linear-gradient(135deg, rgba(200, 255, 61, 0.09), rgba(78, 166, 255, 0.045)),
    #10151b;
  border-color: rgba(200, 255, 61, 0.38);
}

.code-card::before {
  background: linear-gradient(90deg, var(--lime), var(--blue), transparent);
}

.code-card .text-link {
  color: var(--lime);
  border-bottom-color: rgba(200, 255, 61, 0.46);
}

.metric-band div,
.ecosystem-stats div,
.sponsor-grid div,
.closing-grid div {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 22px;
}

.metric-band strong,
.ecosystem-stats strong,
.closing-grid strong {
  display: block;
  color: var(--lime);
  font-size: 34px;
  line-height: 1;
}

.metric-band span,
.ecosystem-stats span,
.closing-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 28px;
}

.section,
.metric-band,
.partner-carousel,
.brand-signal,
.program-intro,
.closing {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.section.in-view,
.metric-band.in-view,
.partner-carousel.in-view,
.brand-signal.in-view,
.program-intro.in-view,
.closing.in-view {
  opacity: 1;
  transform: translateY(0);
}

.section-head {
  max-width: 860px;
}

.section-head.compact {
  max-width: 760px;
  margin-bottom: 34px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.source-card {
  min-height: 230px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.source-card span {
  display: block;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.source-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.source-card small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.source-card.cyan { border-color: rgba(32, 230, 211, 0.65); }
.source-card.cyan span { color: var(--cyan); }
.source-card.lime { border-color: rgba(200, 255, 61, 0.55); }
.source-card.lime span { color: var(--lime); }
.source-card.copper { border-color: rgba(199, 123, 69, 0.65); }
.source-card.copper span { color: var(--copper); }
.source-card.blue { border-color: rgba(78, 166, 255, 0.6); }
.source-card.blue span { color: var(--blue); }

.press-panel {
  display: grid;
  grid-template-columns: 1.12fr repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.press-lead,
.press-panel a {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
}

.press-lead {
  background:
    linear-gradient(145deg, rgba(244, 241, 234, 0.08), rgba(32, 230, 211, 0.04)),
    var(--panel);
}

.press-lead h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 27px;
}

.press-panel a {
  background: #ede7dc;
  color: #11161c;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.press-panel a:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.32);
}

.press-panel a:nth-of-type(1) { border-top: 5px solid var(--cyan); }
.press-panel a:nth-of-type(2) { border-top: 5px solid var(--lime); }
.press-panel a:nth-of-type(3) { border-top: 5px solid var(--copper); }

.press-panel small {
  display: block;
  margin-bottom: 28px;
  color: #5a6269;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.press-panel strong {
  display: block;
  font-size: 19px;
  line-height: 1.18;
}

.press-panel span {
  display: block;
  margin-top: 18px;
  color: #5a6269;
  font-size: 13px;
  line-height: 1.38;
}

.proof {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  align-items: center;
}

.event-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 14px;
}

.event-notes {
  display: grid;
  gap: 12px;
}

.event-notes > div {
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.event-notes strong {
  display: block;
  color: var(--lime);
  font-size: 24px;
}

.event-notes span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--cyan);
  font-weight: 800;
  border-bottom: 1px solid rgba(32, 230, 211, 0.45);
}

.photo-frame {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  background: #030507;
  padding: 0;
  overflow: hidden;
}

.photo-frame img {
  width: 100%;
  object-fit: cover;
}

.photo-frame.wide img {
  height: 430px;
}

.photo-frame.tall img {
  height: 600px;
}

.photo-frame.contained img {
  height: 292px;
}

.photo-frame.portrait img {
  height: 570px;
}

.house-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.16fr 0.86fr;
  gap: 18px;
  align-items: stretch;
}

.house-layout.refined {
  grid-template-columns: minmax(0, 1.26fr) minmax(320px, 0.74fr);
  gap: 16px;
}

.house-hero-photo img {
  height: 600px;
  object-position: center;
}

.house-card {
  padding: 30px;
  background: var(--panel);
  border: 1px solid rgba(200, 255, 61, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.house-card h3 {
  color: var(--lime);
}

.house-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.house-card li {
  position: relative;
  padding: 11px 0 11px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--muted);
  line-height: 1.34;
}

.house-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(200, 255, 61, 0.36);
}

.house-card li strong {
  color: var(--ink);
}

.location-card {
  padding: 28px;
  border: 1px solid rgba(32, 230, 211, 0.5);
  background:
    linear-gradient(160deg, rgba(32, 230, 211, 0.12), rgba(255, 255, 255, 0.02)),
    #0d1116;
}

.location-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.location-card strong {
  display: block;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.08;
}

.location-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.gallery-section {
  padding-top: 46px;
}

.gallery-tabs {
  display: inline-flex;
  gap: 22px;
  margin-top: 24px;
  padding: 0;
  border: 0;
  background: transparent;
}

.gallery-tabs button {
  position: relative;
  min-height: 34px;
  padding: 0 0 9px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  transition: color 180ms ease;
}

.gallery-tabs button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  transform: scaleX(0.34);
  transform-origin: left;
  transition: background 180ms ease, transform 180ms ease;
}

.gallery-tabs button.active,
.gallery-tabs button:hover {
  color: var(--ink);
}

.gallery-tabs button.active::after,
.gallery-tabs button:hover::after {
  background: var(--cyan);
  transform: scaleX(1);
}

.gallery-set {
  display: none;
  gap: 12px;
  margin-top: 18px;
}

.gallery-set-horizontal {
  grid-template-columns: 1.15fr 0.85fr;
  grid-auto-rows: 235px;
}

.gallery-set-events {
  grid-template-columns: 1.05fr 0.9fr 0.8fr;
  grid-auto-rows: 230px;
}

.gallery-set-vertical {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 255px;
}

.gallery-set.active {
  display: grid;
  animation: gallery-fade 460ms ease both;
}

.event-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.event-strip .photo-tile {
  height: 560px;
}

.event-strip .photo-tile img {
  object-position: center top;
}

@keyframes gallery-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.photo-tile {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.06), transparent 58%),
    #030507;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.photo-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 230, 211, 0.68);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.35);
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
  transition: transform 320ms ease, filter 320ms ease;
}

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

.photo-tile.featured img,
.photo-tile.hero-tile img {
  height: 100%;
}

.photo-tile.hero-tile {
  grid-row: span 2;
}

.photo-tile.wide-tile {
  grid-row: span 2;
}

.photo-tile.portrait-tile {
  grid-row: span 2;
}

.photo-tile.landscape-tile {
  grid-column: 1 / -1;
}

.gallery-set-vertical .photo-tile:not(.landscape-tile) {
  grid-row: span 2;
}

.gallery-set-vertical .photo-tile:not(.landscape-tile) img {
  object-position: center top;
}

.photo-tile.portrait-tile img {
  object-position: center top;
}

.media-machine {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.media-copy {
  padding: 32px;
  border: 1px solid rgba(32, 230, 211, 0.48);
  background:
    linear-gradient(145deg, rgba(32, 230, 211, 0.1), rgba(199, 123, 69, 0.06)),
    var(--panel);
}

.capsule-main {
  position: relative;
  overflow: hidden;
}

.capsule-main::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 12%, rgba(255, 255, 255, 0.22) 28%, transparent 42%),
    radial-gradient(circle at 76% 18%, rgba(32, 230, 211, 0.22), transparent 28%);
  mix-blend-mode: screen;
  transform: translateX(-55%);
  animation: capsule-scan 6.5s ease-in-out infinite;
}

.capsule-main img {
  height: 430px;
  animation: capsule-drift 9s ease-in-out infinite alternate;
}

@keyframes capsule-scan {
  0%, 20% { transform: translateX(-70%); opacity: 0; }
  45% { opacity: 0.85; }
  74%, 100% { transform: translateX(70%); opacity: 0; }
}

@keyframes capsule-drift {
  from { transform: scale(1); filter: saturate(1.02) contrast(1); }
  to { transform: scale(1.035); filter: saturate(1.12) contrast(1.04); }
}

.studio-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  align-items: stretch;
  padding-top: 28px;
}

.studio-copy {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid rgba(255, 210, 31, 0.56);
  background:
    linear-gradient(145deg, rgba(255, 210, 31, 0.18), rgba(255, 210, 31, 0.055) 34%, rgba(255, 255, 255, 0.018)),
    var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 238, 166, 0.22),
    0 26px 90px rgba(255, 210, 31, 0.08);
}

.monking-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: #ffe071;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.monking-lockup span {
  position: relative;
  width: 42px;
  height: 28px;
}

.monking-lockup span::before,
.monking-lockup span::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 12px 34px rgba(255, 210, 31, 0.2);
}

.monking-lockup span::before {
  left: 0;
  background: #ffd21f;
}

.monking-lockup span::after {
  right: 0;
  background: #ff8a24;
  mix-blend-mode: screen;
}

.studio-copy .eyebrow {
  color: #ffd21f;
}

.studio-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.52;
}

.studio-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-height: 430px;
}

.studio-grid .photo-frame:first-child {
  grid-row: 1 / span 2;
}

.studio-grid .photo-frame {
  height: 100%;
}

.studio-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.venture-loop {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: start;
}

.loop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.loop-grid div {
  min-height: 162px;
  padding: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(32, 230, 211, 0.08), rgba(255, 255, 255, 0.02));
  transition: transform 200ms ease, border-color 200ms ease;
}

.loop-grid div:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 255, 61, 0.55);
}

.loop-grid strong {
  display: block;
  color: var(--lime);
  font-size: 23px;
}

.loop-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.program {
  padding-top: 60px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.timeline div {
  min-height: 170px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  background: var(--cyan);
  color: #071012;
  font-size: 12px;
  font-weight: 900;
}

.timeline strong,
.sponsor-grid strong {
  display: block;
  font-size: 19px;
}

.timeline small,
.sponsor-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.ecosystem {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.ecosystem-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.founders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 34px;
}

.founder-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
  background: var(--panel);
  border: 1px solid rgba(32, 230, 211, 0.5);
  overflow: hidden;
}

.founder-photo {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.founder-photo img {
  width: 100%;
  height: 390px;
  display: block;
  object-fit: cover;
  background: transparent;
}

.founder-card > div {
  padding: 28px;
}

.founder-card h3 {
  color: var(--cyan);
}

.founder-card.warm {
  border-color: rgba(199, 123, 69, 0.62);
}

.founder-card.warm h3 {
  color: var(--copper);
}

.linkedin-icon-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  margin-top: 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.linkedin-icon-link svg {
  display: block;
  width: 18px;
  height: 18px;
  color: #fff;
  fill: currentColor;
}

.linkedin-icon-link:hover {
  transform: translateY(-2px);
  border-color: rgba(32, 230, 211, 0.74);
  background: rgba(32, 230, 211, 0.12);
}

.founder-card.warm .linkedin-icon-link:hover {
  border-color: rgba(199, 123, 69, 0.72);
  background: rgba(199, 123, 69, 0.14);
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.sponsor-grid div:nth-child(1) { border-color: rgba(32, 230, 211, 0.52); }
.sponsor-grid div:nth-child(2) { border-color: rgba(200, 255, 61, 0.48); }
.sponsor-grid div:nth-child(3) { border-color: rgba(199, 123, 69, 0.58); }
.sponsor-grid div:nth-child(4) { border-color: rgba(78, 166, 255, 0.55); }

.lead-forms {
  padding-top: 46px;
}

.faq-section {
  padding-top: 40px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.022) 46%, rgba(32, 230, 211, 0.04)),
    rgba(13, 17, 22, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  backdrop-filter: blur(16px) saturate(1.15);
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--cyan);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 860px;
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.forms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.forms-grid form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(32, 230, 211, 0.08), rgba(255, 255, 255, 0.018)),
    var(--panel);
}

.forms-grid form:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(200, 255, 61, 0.08), rgba(199, 123, 69, 0.05)),
    var(--panel);
  border-color: rgba(200, 255, 61, 0.34);
}

.forms-grid form > span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.forms-grid form:nth-child(2) > span {
  color: var(--lime);
}

.forms-grid h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.form-note {
  margin: -4px 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.forms-grid label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.forms-grid input,
.forms-grid textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #080b0f;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  padding: 13px 14px;
  outline: none;
}

.forms-grid input:focus,
.forms-grid textarea:focus {
  border-color: var(--cyan);
}

.forms-grid button {
  min-height: 48px;
  margin-top: 4px;
  border: 0;
  background: var(--cyan);
  color: #071012;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.forms-grid form:nth-child(2) button {
  background: var(--lime);
}

.hidden-field {
  display: none;
}

.contact-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: end;
  padding-top: 28px;
  padding-bottom: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-strip h2 {
  margin-bottom: 0;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.contact-points a {
  color: var(--cyan);
  text-decoration: none;
}

.contact-points span,
.contact-points a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.closing {
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 28px 110px;
}

.closing h2 {
  max-width: 860px;
}

.closing-grid {
  display: grid;
  grid-template-columns: 0.75fr 0.75fr 1.5fr;
  gap: 12px;
  margin-top: 34px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(2, 4, 6, 0.86);
  backdrop-filter: blur(18px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox button {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0d1116;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.lightbox figure {
  width: min(1080px, 92vw);
  margin: 0;
  padding: 12px;
  background: #0d1116;
  border: 1px solid rgba(32, 230, 211, 0.45);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #050709;
}

.lightbox figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.modal-open {
  overflow: hidden;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.thanks {
  width: min(760px, calc(100vw - 36px));
  padding: 52px;
  border: 1px solid rgba(32, 230, 211, 0.48);
  background:
    linear-gradient(145deg, rgba(32, 230, 211, 0.12), rgba(200, 255, 61, 0.05)),
    var(--panel);
}

.thanks h1 {
  margin-bottom: 18px;
  font-size: 58px;
}

.thanks p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.program-snapshot span,
.brand-signal span,
.story-step,
.partner-track,
.stack-card,
.source-card,
.press-lead,
.event-notes > div,
.photo-frame,
.photo-tile,
.house-card,
.location-card,
.media-copy,
.studio-copy,
.timeline div,
.metric-band div,
.ecosystem-stats div,
.sponsor-grid div,
.closing-grid div,
.founder-card,
.forms-grid form,
.thanks {
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.024) 42%, rgba(32, 230, 211, 0.045)),
    rgba(13, 17, 22, 0.68);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(1.18);
}

.house-card {
  border-color: rgba(200, 255, 61, 0.46);
}

.location-card,
.media-copy {
  border-color: rgba(32, 230, 211, 0.46);
}

.studio-copy,
.forms-grid form:nth-child(2) {
  border-color: rgba(200, 255, 61, 0.36);
}

.studio-copy {
  border-color: rgba(255, 210, 31, 0.56);
  background:
    linear-gradient(145deg, rgba(255, 210, 31, 0.18), rgba(255, 210, 31, 0.055) 34%, rgba(255, 255, 255, 0.018)),
    rgba(13, 17, 22, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 238, 166, 0.22),
    0 26px 90px rgba(255, 210, 31, 0.08);
}

.press-panel a {
  border-radius: 8px;
}

.photo-frame,
.photo-tile,
.story-photo,
.hero-media {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 26px 90px rgba(0, 0, 0, 0.28);
}

.photo-frame,
.photo-tile {
  isolation: isolate;
}

.photo-frame::after,
.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 10%, rgba(255, 255, 255, 0.14) 32%, transparent 46%),
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.26));
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-24%);
  transition: opacity 260ms ease, transform 420ms ease;
}

.photo-frame:hover::after,
.photo-tile:hover::after {
  opacity: 0.82;
  transform: translateX(22%);
}

@media (max-width: 920px) {
  .topbar {
    position: relative;
    height: auto;
    gap: 16px;
    padding: 18px;
    padding-right: 74px;
    align-items: flex-start;
  }

  .topbar .lang-switch {
    position: absolute;
    top: 14px;
    right: 18px;
    margin-left: 0;
    z-index: 3;
  }

  .topbar nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
  }

  .hero,
  .page-hero,
  .proof,
  .house-layout,
  .media-machine,
  .studio-section,
  .ecosystem,
  .founders,
  .gallery-set,
  .venture-loop,
  .platform-stack,
  .event-panel,
  .story-grid,
  .studio-grid,
  .program-intro,
  .partner-head,
  .forms-grid,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .house-layout.refined {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .house-hero-photo {
    grid-column: 1 / -1;
    border-radius: 26px 26px 0 0;
  }

  .house-hero-photo img {
    width: 100%;
    height: clamp(260px, 62vw, 430px);
    object-fit: cover;
    object-position: center;
  }

  .house-card {
    grid-column: 1 / -1;
    border-radius: 0 0 26px 26px;
    border-top: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .page-hero {
    padding-top: 54px;
  }

  .page-hero-media img {
    height: 440px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .metric-band,
  .evidence-grid,
  .press-panel,
  .brand-signal,
  .program-snapshot,
  .timeline,
  .sponsor-grid,
  .closing-grid,
  .ecosystem-stats,
  .loop-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric-intro {
    grid-column: 1 / -1;
  }

  .media-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-set-horizontal,
  .gallery-set-events,
  .gallery-set-vertical {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-set-horizontal,
  .gallery-set-events {
    grid-auto-rows: 230px;
  }

  .gallery-set-vertical {
    grid-auto-rows: 360px;
  }

  .photo-tile.hero-tile {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-tile.wide-tile,
  .photo-tile.portrait-tile {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .contact-points {
    justify-content: flex-start;
  }

  .studio-grid {
    grid-template-rows: auto;
    min-height: auto;
  }

  .studio-grid .photo-frame:first-child {
    grid-row: auto;
  }

  .studio-grid .photo-frame {
    height: auto;
  }

  .studio-grid img {
    height: 280px;
  }
}

@media (max-width: 620px) {
  .topbar {
    padding: 16px;
  }

  .topbar nav {
    display: none;
  }

  .hero,
  .page-hero,
  .section,
  .closing {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 29px;
  }

  .metric-band,
  .evidence-grid,
  .press-panel,
  .brand-signal,
  .program-snapshot,
  .story-grid,
  .timeline,
  .sponsor-grid,
  .closing-grid,
  .ecosystem-stats,
  .loop-grid {
    grid-template-columns: 1fr;
  }

  .metric-band {
    gap: 8px;
    margin-bottom: 34px;
  }

  .program-snapshot {
    grid-template-columns: 1fr 1fr;
  }

  .metric-band div {
    min-height: 132px;
  }

  .photo-frame.wide img,
  .photo-frame.tall img,
  .photo-frame.contained img,
  .photo-frame.portrait img,
  .photo-tile:not(.wide-tile) img,
  .photo-tile.featured img,
  .photo-tile.hero-tile img,
  .capsule-main img,
  .studio-grid img,
  .founder-photo img,
  .hero-media img {
    height: auto;
    max-height: none;
    min-height: 0;
  }

  .gallery-set-horizontal,
  .gallery-set-events,
  .gallery-set-vertical {
    grid-template-columns: 1fr;
  }

  .gallery-set-horizontal,
  .gallery-set-events {
    grid-auto-rows: 245px;
  }

  .gallery-set-vertical {
    grid-auto-rows: 430px;
  }

  .gallery-set .photo-tile img,
  .gallery-set .photo-tile.featured img,
  .gallery-set .photo-tile.hero-tile img {
    height: 100%;
    max-height: none;
  }

  .event-strip {
    grid-template-columns: 1fr;
  }

  .event-strip .photo-tile {
    height: 430px;
  }

  .page-hero-media img {
    height: auto;
  }

}
