:root {
  --ink: #161616;
  --paper: #f5f3ee;
  --line: #d8d4cb;
  --accent: #ff4f00;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; width: 100%; }
.icon {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.shell { width: min(100% - 64px, 1400px); margin-inline: auto; }

.nav {
  height: 96px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: white;
  background: #050505;
  border-bottom: 1px solid #262626;
  box-shadow: 0 0 0 100vmax #050505;
  clip-path: inset(0 -100vmax);
  transition: color .55s ease,background .55s ease,border-color .55s ease,box-shadow .55s ease;
}
.nav .wordmark img { filter: invert(1); transition: filter .55s ease; }
.wordmark { display: inline-flex; align-items: center; width: 64px; }
.wordmark img { width: 100%; height: auto; }
.nav nav { display: flex; gap: 38px; font-size: 13px; }
.nav nav a { transition: opacity .2s; }
.nav nav a:hover { opacity: .5; }
.language { justify-self: end; display: flex; gap: 6px; color: #9b9890; font-size: 12px; }
.language button { border: 0; background: none; padding: 6px 1px; cursor: pointer; color: inherit; }
.language button.active { color: white; font-weight: 700; }

.hero {
  position: relative;
  min-height: calc(100svh - 96px);
  display: block;
  padding-block: 0;
  color: white;
  background: #050505;
  box-shadow: 0 0 0 100vmax #050505;
  clip-path: inset(0 -100vmax);
  overflow: hidden;
  transition: color .55s ease,background .55s ease,box-shadow .55s ease;
}
.eyebrow, .section-number, .about-label, .contact > .shell > p {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 14px; }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--accent); }
.hero-copy {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 96px);
}
.hero-copy .eyebrow {
  position: absolute;
  left: 0;
  bottom: 182px;
  margin: 0;
}
.hero h1 {
  margin: 0;
  max-width: none;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(70px, 7.5vw, 116px);
  font-weight: 400;
  line-height: .87;
  letter-spacing: -.05em;
}
.hero h1 span,
.hero h1 em { display: block; }
.hero h1 em { color: var(--accent); font-weight: 400; }
.idea-line { display: flex !important; align-items: center; gap: .18em; }
.idea-bulb { position: relative; display: inline-grid; place-items: center; flex: 0 0 auto; width: .72em; height: .72em; padding: 0; color: var(--accent); background: transparent; border: 0; cursor: pointer; transform: translateY(.03em); }
.bulb-icon { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; overflow: visible; }
.idea-bulb:not(.is-on) .bulb-icon { animation: bulb-invite 1.8s ease-in-out infinite; }
.bulb-ray { opacity: 0; transform-origin: center; }
.idea-bulb::before { content: none; }
.idea-bulb::after { content: attr(data-hint); position: absolute; left: calc(100% - 2px); top: -12px; z-index: 3; padding: 6px 9px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(12,12,12,.92); color: white; font-family: Helvetica,"Helvetica Neue",Arial,sans-serif; font-size: 9px; font-style: normal; font-weight: 700; line-height: 1; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; box-shadow: 0 8px 24px rgba(0,0,0,.35); transform: none; transition: opacity .25s, transform .25s; }
.idea-bulb.is-on { color: var(--accent); background: transparent; filter: drop-shadow(0 0 5px rgba(255,79,0,.75)) drop-shadow(0 0 12px rgba(255,79,0,.38)); animation: bulb-pop .45s ease; }
.idea-bulb.is-on::after { opacity: 0; pointer-events: none; transform: translateY(-4px); }
.idea-bulb.is-on .bulb-ray { opacity: 1; animation: rays-in .45s ease; }
.idea-bulb:hover { color: var(--accent); background: transparent; transform: translateY(.03em) scale(1.08); animation-play-state: paused; }
.idea-bulb.is-on:hover { color: var(--accent); background: transparent; }
@keyframes bulb-invite { 0%,100% { filter: drop-shadow(0 0 2px rgba(255,79,0,.22)); } 50% { filter: drop-shadow(0 0 8px rgba(255,79,0,.68)); } }
@keyframes bulb-pop { 50% { transform: translateY(.03em) scale(1.14); } }
@keyframes rays-in { from { transform: scale(.6); opacity: 0; } }
.idea-card { position: absolute; z-index: 6; top: 63%; left: 41%; width: min(520px,45%); padding: 20px 22px; border: 1px solid rgba(255,255,255,.17); border-radius: 12px; background: rgba(13,13,13,.88); box-shadow: 0 20px 50px rgba(0,0,0,.35); backdrop-filter: blur(16px); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .3s, transform .3s, visibility .3s; }
.idea-card.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.idea-card > p { margin: 0 0 8px; color: var(--accent); font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.idea-card strong { display: block; max-width: 440px; font-size: 16px; line-height: 1.45; font-weight: 400; }
.idea-card > div { display: flex; align-items: center; gap: 20px; margin-top: 16px; }
.idea-card button,.idea-card a { border: 0; background: transparent; color: #aaa; font: inherit; font-size: 10px; text-transform: uppercase; letter-spacing: .11em; cursor: pointer; }
.idea-card a { display: inline-flex; align-items: center; gap: 7px; color: white; }
.idea-card a .icon { width: 14px; height: 14px; color: var(--accent); }
.code-cloud { position: absolute; z-index: 1; inset: 0; pointer-events: none; overflow: hidden; }
.code-cloud span { position: absolute; left: var(--x); top: var(--y); color: var(--accent); font-family: "Courier New",Courier,monospace; font-size: var(--size); font-weight: 700; line-height: 1; white-space: nowrap; opacity: 0; filter: blur(5px); transform: translate(-50%,18px) scale(.78); transition: opacity .38s ease var(--delay),filter .45s ease var(--delay),transform .55s cubic-bezier(.2,.8,.2,1) var(--delay); }
.code-cloud.is-visible span { opacity: .8; filter: blur(0); transform: translate(-50%,0) scale(1); animation: code-float 4.5s ease-in-out calc(var(--delay) + .6s) infinite alternate; }
@keyframes code-float { from { translate: 0 calc(var(--drift) * -.35); } to { translate: 0 var(--drift); } }
.desktop-title {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 41%;
  width: 59%;
  transform: translateY(-54%);
}
.desktop-title em {
  margin-left: 24%;
  font-style: italic;
}
.mobile-title { display: none; }
.intro {
  position: absolute;
  left: 0;
  bottom: 66px;
  width: min(35%, 480px);
  margin: 0;
  color: #c2c2c2;
  font-size: 16px;
  line-height: 1.65;
}
.hero-actions {
  position: absolute;
  right: 0;
  bottom: 66px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
}
.mobile-actions { display: none; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.button.dark { background: var(--accent); color: white; }
.button .icon { width: 17px; height: 17px; }
.availability { display: flex; align-items: center; gap: 10px; color: #77736c; font-size: 12px; }
.availability i { width: 7px; height: 7px; border-radius: 50%; background: #5e8e62; box-shadow: 0 0 0 4px #dce6da; }
.portrait-wrap {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 49%;
  min-height: 100%;
  background: #050505;
  overflow: hidden;
  transition: background .55s ease;
}
.portrait-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 58%, #050505 100%);
  pointer-events: none;
  transition: background .55s ease;
}
.portrait-wrap img {
  height: 100%;
  object-fit: cover;
  object-position: 44% center;
  filter: contrast(1.06);
  transition: filter .55s ease,mix-blend-mode .55s ease,opacity .55s ease;
}
.portrait-label {
  display: none;
}
.site.light-hero .nav { color: var(--ink); background: var(--paper); border-color: var(--line); box-shadow: 0 0 0 100vmax var(--paper); }
.site.light-hero .nav .wordmark img { filter: none; }
.site.light-hero .language button.active { color: var(--ink); }
.site.light-hero .hero { color: var(--ink); background: var(--paper); box-shadow: 0 0 0 100vmax var(--paper); }
.site.light-hero .hero .intro,.site.light-hero .hero .availability { color: #625e58; }
.site.light-hero .portrait-wrap { background: var(--paper); }
.site.light-hero .portrait-wrap::after { background: linear-gradient(90deg,transparent 52%,var(--paper) 100%); }
.site.light-hero .portrait-wrap img { opacity: .82; filter: grayscale(1) contrast(1.28) brightness(1.08); mix-blend-mode: screen; }
.site.light-hero .idea-card { border-color: rgba(22,22,22,.14); background: rgba(245,243,238,.92); color: var(--ink); box-shadow: 0 20px 50px rgba(35,29,22,.14); }
.site.light-hero .idea-card button { color: #77736c; }
.site.light-hero .idea-card a { color: var(--ink); }
.site.light-hero .idea-bulb::after { border-color: rgba(22,22,22,.15); background: var(--ink); }
.work { padding-block: 135px; border-top: 1px solid var(--line); }
.section-head { display: grid; grid-template-columns: 1fr 1fr; align-items: end; margin-bottom: 70px; }
.section-head > div { display: flex; align-items: start; gap: 24px; }
.section-number { color: var(--accent); margin-top: 8px; }
.section-head h2, .about h2, .contact h2 {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400; letter-spacing: -.04em;
}
.section-head h2 { margin: 0; color: var(--accent); font-size: 58px; }
.section-head > p { width: min(100%, 470px); justify-self: end; margin: 0; color: #6c6862; line-height: 1.7; }
.projects { display: grid; grid-template-columns: 1fr 1fr; gap: 82px 26px; }
.project-image { position: relative; height: clamp(300px, 31vw, 465px); padding: 34px; overflow: hidden; }
.project-image iframe {
  display: block;
  width: 200%;
  height: 200%;
  border: 0;
  background: white;
  transform: scale(.5);
  transform-origin: top left;
  box-shadow: none;
}
.preview-scroll-hint {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgb(255 255 255 / .28);
  border-radius: 999px;
  background: rgb(5 5 5 / .82);
  color: white;
  box-shadow: 0 8px 22px rgb(0 0 0 / .2);
  backdrop-filter: blur(8px);
  font-size: 9px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}
.scroll-icon {
  width: 12px;
  height: 16px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: scroll-nudge 1.5s ease-in-out infinite;
}
@keyframes scroll-nudge {
  0%, 100% { transform: translateY(-1px); }
  50% { transform: translateY(2px); }
}
.project.sage .project-image { background: #d7ddd4; }
.project.wine .project-image { background: #d2b8b5; }
.project.sky .project-image { background: #d9e2e8; }
.project.sand .project-image { background: #e7ddd0; }
.project.charcoal .project-image { background: #c4c4c2; }
.project.rose .project-image { background: #dbc9c0; }
.open-icon {
  position: absolute; top: 18px; right: 18px; display: grid; place-items: center;
  z-index: 2; width: 42px; height: 42px; border-radius: 50%; background: var(--paper); opacity: 0; transform: translateY(8px); transition: .25s;
}
.project:hover .open-icon { opacity: 1; transform: none; }
.project-meta { display: grid; grid-template-columns: 1fr auto; gap: 8px 20px; padding-top: 20px; border-top: 1px solid var(--ink); margin-top: 18px; }
.project-meta > div { display: flex; align-items: baseline; gap: 16px; }
.project-meta > div span { font-size: 10px; color: #8a867e; }
.project h3 { margin: 0; font-size: 19px; font-weight: 500; }
.project-meta p { margin: 4px 0 0; font-size: 12px; color: #77736c; }
.visit { grid-column: 2; display: inline-flex; align-items: center; gap: 7px; color: var(--accent); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.visit .icon { width: 14px; height: 14px; }

.about { padding-block: 150px; display: grid; grid-template-columns: 1fr 2fr; border-top: 1px solid var(--line); }
.about-label { display: flex; gap: 26px; }
.about-label span { color: var(--accent); }
.about-content h2 { max-width: 830px; margin: 0; font-size: clamp(48px, 5.5vw, 82px); line-height: 1.03; }
.about-content h2 { color: var(--accent); }
.about-content > p { max-width: 710px; margin: 52px 0 58px; color: #625e58; font-size: 17px; line-height: 1.8; white-space: pre-line; }
.services { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.services span { padding: 22px 12px 0 0; font-size: 12px; }

.process { padding-block: 135px 155px; border-top: 1px solid var(--line); }
.process-head { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; margin-bottom: 105px; }
.process-head > p { margin: 8px 0 0; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }
.process-head h2 { max-width: 820px; margin: 0; color: var(--accent); font-size: clamp(48px,5.2vw,78px); font-weight: 400; line-height: 1.03; }
.process-head div > span { display: block; max-width: 620px; margin-top: 30px; color: #625e58; font-size: 16px; line-height: 1.7; }
.process-track { position: relative; display: grid; grid-template-columns: repeat(5,1fr); gap: 22px; }
.process-line { position: absolute; top: 11px; left: 0; right: 0; height: 1px; background: #c8c4bc; }
.process-line i { display: block; width: 100%; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 1.1s cubic-bezier(.22,.8,.25,1); }
.process.is-visible .process-line i { transform: scaleX(1); }
.process-step { position: relative; z-index: 1; min-width: 0; padding: 0 16px 0 0; border: 0; background: transparent; color: var(--ink); text-align: left; cursor: pointer; }
.process-step::before { content: ""; display: block; width: 13px; height: 13px; margin: 5px 0 30px; border: 1px solid #8c8880; border-radius: 50%; background: var(--paper); transition: background .25s,border-color .25s,transform .25s,box-shadow .25s; }
.process-step:hover::before,.process-step.active::before { border-color: var(--accent); background: var(--accent); transform: scale(1.25); box-shadow: 0 0 0 5px rgba(255,79,0,.12); }
.process-number { display: block; margin-bottom: 14px; color: #8a867e; font-size: 10px; }
.process-step strong { display: block; font-size: 22px; font-weight: 400; }
.process-text { display: block; max-width: 220px; max-height: 0; margin-top: 0; overflow: hidden; color: #625e58; font-size: 13px; line-height: 1.65; opacity: 0; transform: translateY(-5px); transition: max-height .4s,margin .4s,opacity .3s,transform .3s; }
.process-step.active .process-text { max-height: 130px; margin-top: 16px; opacity: 1; transform: translateY(0); }

.contact { background: var(--ink); color: white; padding-block: 120px 86px; }
.contact > .shell > p { color: #aaa69e; }
.contact h2 { max-width: 1000px; margin: 36px 0 70px; font-size: clamp(55px, 7vw, 105px); line-height: .98; }
.contact a { display: inline-flex; align-items: center; gap: 55px; padding-bottom: 12px; border-bottom: 1px solid white; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.contact a .icon { width: 20px; height: 20px; color: var(--accent); }
.email-address { margin-top: 65px; color: #777; font-size: 13px; }
footer { min-height: 100px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; font-size: 11px; color: #79756e; }
footer > a:last-child { justify-self: end; color: var(--ink); }

@media (max-width: 800px) {
  .shell { width: min(100% - 40px, 1400px); }
  .nav { height: 76px; grid-template-columns: 1fr auto; }
  .wordmark { width: 56px; }
  .nav nav { display: none; }
  .hero {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(480px, 60svh) auto auto auto;
    padding-block: 0 48px;
    background: #050505;
    color: white;
    box-shadow: 0 0 0 100vmax #050505;
    clip-path: inset(0 -100vmax);
  }
  .hero .intro, .hero .availability { color: #b8b8b8; }
  .hero .button.dark { background: var(--accent); color: white; }
  .hero-copy {
    display: contents;
  }
  .hero-copy .eyebrow {
    position: relative;
    inset: auto;
    z-index: 4;
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-self: center;
    margin: 26px 0 0;
  }
  .desktop-title { display: none; }
  .hero-copy .mobile-title {
    display: block;
    position: relative;
    z-index: 4;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    justify-self: center;
    width: min(100%, 350px);
    margin: 0 0 30px;
    color: white;
    font-size: clamp(43px, 11.8vw, 53px);
    line-height: .9;
    text-align: center;
    letter-spacing: -.065em;
  }
  .mobile-title em { color: var(--accent); }
  .site.light-hero .hero-copy .mobile-title { color: var(--ink); }
  .mobile-title > span,
  .mobile-title-main > span { display: block; }
  .mobile-title-main em {
    display: block;
    margin: 8px 0 0;
    font-size: 100%;
    line-height: .9;
    letter-spacing: -.055em;
  }
  .idea-line { justify-content: center; }
  .idea-bulb { width: .8em; height: .8em; }
  .idea-card { position: relative; inset: auto; z-index: 6; grid-column: 1; grid-row: 3; width: min(100%,350px); max-height: 0; margin: 0 auto; padding: 0 18px; text-align: center; overflow: hidden; transform: translateY(-8px); transition: opacity .3s, transform .3s, visibility .3s, max-height .35s, padding .35s, margin .35s; }
  .idea-card.is-visible { max-height: 240px; margin-top: 24px; padding: 18px; transform: translateY(0); }
  .idea-card > div { justify-content: center; flex-wrap: wrap; gap: 14px 22px; }
  .code-cloud span { font-size: clamp(9px,2.8vw,var(--size)); }
  .code-cloud.is-visible span { opacity: .62; }
  .intro {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 350px);
    margin: 30px auto 0;
    font-size: 15px;
    text-align: center;
  }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-copy .hero-actions { display: none; }
  .mobile-actions {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 3;
    display: flex;
    grid-column: 1;
    grid-row: 4;
    width: 100%;
    align-items: center;
    margin-top: 28px;
  }
  .mobile-actions .button {
    position: relative;
    width: 100%;
    justify-content: center;
  }
  .mobile-actions .button .icon {
    position: absolute;
    right: 22px;
  }
  .mobile-actions .availability { justify-content: center; }
  .portrait-wrap {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
  }
  .portrait-wrap::after {
    background:
      linear-gradient(180deg, rgba(5,5,5,.12) 0%, transparent 38%, #050505 100%),
      linear-gradient(90deg, rgba(5,5,5,.18) 0%, transparent 55%);
  }
  .site.light-hero .portrait-wrap::after { background: linear-gradient(180deg,rgba(245,243,238,.08) 0%,transparent 38%,var(--paper) 100%),linear-gradient(90deg,rgba(245,243,238,.18) 0%,transparent 55%); }
  .portrait-wrap img { object-position: 8% 24%; }
  .work { padding-block: 90px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .section-head h2 { font-size: 44px; }
  .section-head > p { justify-self: start; }
  .projects { grid-template-columns: 1fr; gap: 62px; }
  .project-image { height: 62vw; min-height: 270px; padding: 20px; }
  .preview-scroll-hint { bottom: 14px; }
  .open-icon { display: grid; width: 38px; height: 38px; opacity: 1; transform: none; }
  .project-meta {
    grid-template-columns: 1fr auto;
    gap: 12px 20px;
    padding-top: 18px;
  }
  .project-meta > div {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: start;
    gap: 10px;
  }
  .project-meta > div span { margin-top: 5px; color: var(--accent); }
  .project h3 {
    font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.1;
  }
  .project-meta p { align-self: center; margin: 0; }
  .visit { grid-column: 2; align-self: center; }
  .about { padding-block: 95px; grid-template-columns: 1fr; gap: 52px; }
  .about-content h2 { font-size: 41px; line-height: 1.14; }
  .about-content > p { margin-block: 36px 45px; font-size: 16px; }
  .services { grid-template-columns: 1fr; }
  .services span { padding-block: 18px; border-bottom: 1px solid var(--line); }
  .process { padding-block: 90px 105px; }
  .process-head { grid-template-columns: 1fr; gap: 42px; margin-bottom: 65px; }
  .process-head h2 { font-size: 41px; line-height: 1.14; }
  .process-head div > span { margin-top: 24px; font-size: 15px; }
  .process-track { grid-template-columns: 1fr; gap: 0; padding-left: 26px; }
  .process-line { top: 7px; bottom: 7px; left: 6px; right: auto; width: 1px; height: auto; }
  .process-line i { width: 2px; height: 100%; min-height: 0; transform: scaleY(0); transform-origin: top; transition: transform 1.1s cubic-bezier(.22,.8,.25,1); }
  .process.is-visible .process-line i { transform: scaleY(1); }
  .process-step { padding: 0 0 34px; }
  .process-step::before { position: absolute; left: -26px; top: 0; margin: 0; }
  .process-number { margin-bottom: 8px; }
  .process-step strong { font-size: 25px; }
  .process-text { max-width: 310px; }
  .process-step.active .process-text { max-height: 150px; }
  .contact { padding-block: 90px 66px; }
  .contact h2 { margin: 30px 0 55px; font-size: 47px; line-height: 1.12; }
  footer { grid-template-columns: 1fr auto; }
  footer p { display: none; }
}

@media (max-width: 600px) {
  .portrait-wrap { min-height: 0; }
  .project-image {
    width: 100%;
    height: 62vw;
    min-height: 270px;
    padding: 0;
    background: white !important;
  }
  .project-image iframe {
    width: 400%;
    height: 400%;
    transform: scale(.25);
    transform-origin: top left;
    box-shadow: none;
  }
  .preview-scroll-hint {
    bottom: 12px;
    padding: 9px 12px;
    font-size: 9px;
  }
  .open-icon { top: 12px; right: 12px; }
  .project-meta > div { gap: 10px; }
  .contact h2 { font-size: 43px; }
}

@media (max-width: 420px) {
  .hero-copy .mobile-title {
    font-size: clamp(40px, 11.5vw, 47px);
  }
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 455px auto auto;
  }
  .intro { margin-top: 26px; font-size: 14px; }
}
