:root {
  color-scheme: light;
  --bg: #f7f3ea;
  --surface: #fffdf8;
  --surface-2: #ece5d8;
  --ink: #16201f;
  --muted: #65706d;
  --line: rgba(22, 32, 31, 0.14);
  --accent: #0f6b5f;
  --accent-2: #d97732;
  --dark: #10201e;
  --dark-muted: #cad6d2;
  --shadow: 0 24px 70px rgba(23, 30, 27, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(15, 107, 95, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(15, 107, 95, 0.04) 1px, transparent 1px),
    var(--bg);
  background-size: 56px 56px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
}

img {
  display: block;
}

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

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 8vw, 7.65rem);
  font-weight: 700;
  line-height: 0.94;
}

h2 {
  max-width: 880px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
}

h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  line-height: 1.15;
}

:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  border-bottom: 1px solid rgba(22, 32, 31, 0.1);
  background: rgba(247, 243, 234, 0.9);
  padding: 14px clamp(18px, 4vw, 56px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.1vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.resume-link {
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--accent) !important;
  padding: 10px 14px !important;
}

.menu-button {
  display: none;
}

.hero,
.about-hero,
.section,
.site-footer {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding-inline: clamp(18px, 4vw, 56px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-top: clamp(44px, 6vw, 86px);
  padding-bottom: clamp(54px, 7vw, 96px);
}

.hero-copy > p:not(.eyebrow, .capability-line) {
  max-width: 780px;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
}

.hero-lede {
  color: var(--ink);
  font-weight: 750;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.button,
.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 850;
}

.button {
  border: 1px solid var(--line);
  padding: 13px 17px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(23, 30, 27, 0.12);
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.text-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.capability-line {
  max-width: 860px;
  margin-top: 28px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-visual {
  display: grid;
  gap: 14px;
}

.portrait-card,
.work-card,
.capability-grid article,
.timeline article,
.resume-card,
.contact-card,
.case-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow);
}

.portrait-card {
  width: min(100%, 500px);
  margin: 0;
  overflow: hidden;
  justify-self: center;
  background: transparent;
}

.portrait-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.shorts-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.shorts-grid article:hover {
  border-color: rgba(15, 107, 95, 0.38);
  box-shadow: 0 18px 46px rgba(15, 107, 95, 0.16);
  transform: translateY(-2px);
}

.shorts-grid span,
.work-card span,
.timeline span,
.case-label {
  display: block;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.shorts-grid span {
  padding: 14px 14px 10px;
}

.shorts-grid iframe {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  background: #101817;
}

.shorts-grid article:first-child iframe {
  transform: scale(1.08);
  transform-origin: center top;
}

.section {
  padding-top: clamp(62px, 8vw, 116px);
  padding-bottom: clamp(62px, 8vw, 116px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: clamp(28px, 6vw, 84px);
}

.strategy-section {
  display: grid;
  gap: 28px;
}

.strategy-heading {
  max-width: 980px;
}

.strategy-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  font-weight: 900;
  line-height: 1.02;
}

.strategy-section .rich-copy {
  display: grid;
  gap: 28px;
}

.strategy-section .rich-copy p {
  max-width: 900px;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.rich-copy p,
.section-heading p,
.about-band p,
.final-cta p,
.case-preview p {
  max-width: 760px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 245px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-weight: 850;
  line-height: 1.2;
  box-shadow: 0 16px 44px rgba(23, 30, 27, 0.08);
}

.process-list img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.process-list li:nth-child(1) img {
  object-position: 42% center;
}

.process-list li:nth-child(2) img,
.process-list li:nth-child(3) img,
.process-list li:nth-child(5) img {
  object-position: center top;
}

.process-list span {
  display: block;
  color: var(--accent-2);
  font-size: 0.8rem;
  padding: 16px 16px 4px;
}

.process-list strong {
  display: block;
  padding: 0 16px 18px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.12;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.work-card {
  overflow: hidden;
}

.work-card.featured {
  display: grid;
  grid-column: span 3;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
}

.work-card img {
  width: 100%;
  height: auto;
  max-height: 430px;
  min-height: 250px;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(15, 107, 95, 0.08), rgba(217, 119, 50, 0.08)),
    #151817;
  padding: 14px;
}

.work-card:not(.featured) img {
  aspect-ratio: 16 / 10;
}

.work-card.featured img {
  height: 100%;
  max-height: none;
  aspect-ratio: 16 / 10;
}

.work-card > div {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 38px);
}

.work-card h3 {
  margin: 10px 0 12px;
}

.work-card a {
  margin-top: auto;
  color: var(--accent);
  font-weight: 900;
}

.work-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.work-card-actions .button {
  min-height: 44px;
  padding: 11px 14px;
}

.work-card-actions .button.secondary {
  border-color: rgba(15, 107, 95, 0.28);
}

dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

dl div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

dt {
  color: var(--accent);
  font-weight: 900;
}

dd {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.section-action {
  margin-top: 28px;
}

.featured-video-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(10px, 2vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(15, 107, 95, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(15, 107, 95, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, #111815 0%, #070b0d 62%, #0b1724 100%);
  background-size: 64px 64px, 64px 64px, auto;
  color: white;
}

.featured-video-copy h2 {
  max-width: 340px;
  margin-bottom: 24px;
  color: white;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 4.3vw, 5rem);
  font-weight: 950;
  line-height: 0.98;
}

.featured-video-copy .eyebrow {
  color: #00c2ff;
}

.featured-video-copy .button.primary {
  border-color: #f8bd3d;
  background: #f8bd3d;
  color: #101817;
}

.featured-video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #05080b;
}

.muted-section {
  max-width: none;
  background: var(--dark);
  color: white;
}

.muted-section .section-heading,
.muted-section .capability-grid,
.muted-section .section-action {
  width: min(1440px, 100%);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 56px);
}

.muted-section h2,
.muted-section h3 {
  color: white;
}

.muted-section p {
  color: var(--dark-muted);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.capability-grid article {
  min-height: 230px;
  padding: 24px;
  box-shadow: none;
}

.muted-section .capability-grid article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

.case-preview {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.case-media {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(180px, 0.45fr);
  gap: 14px;
  align-items: end;
}

.case-media img,
.case-media iframe {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.case-media iframe {
  display: block;
  aspect-ratio: 9 / 16;
  border: 0;
  background: #101817;
}

.case-media img:first-child {
  transform: translateY(-26px);
}

.case-points {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.case-points p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  padding: 24px;
  box-shadow: none;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.68fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding-top: clamp(40px, 6vw, 78px);
  padding-bottom: clamp(34px, 5vw, 64px);
}

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

.about-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 4.9vw, 5.65rem);
  line-height: 0.98;
}

.about-hero-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.35vw, 1.28rem);
  line-height: 1.5;
}

.about-family-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: var(--shadow);
}

.about-family-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  border-top: 1px solid var(--line);
  padding-top: clamp(46px, 6vw, 76px);
  padding-bottom: clamp(34px, 5vw, 58px);
}

.about-story h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 4.1rem);
  line-height: 1;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 0;
  padding-bottom: clamp(46px, 6vw, 76px);
}

.about-values article {
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: clamp(20px, 2.5vw, 30px);
  box-shadow: none;
}

.about-values span {
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 900;
}

.about-values h2 {
  margin: 24px 0 14px;
  font-size: clamp(1.55rem, 2.2vw, 2.55rem);
  line-height: 1;
}

.about-values p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.about-values + .split {
  border-top: 1px solid var(--line);
  padding-top: clamp(46px, 6vw, 76px);
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.62);
}

.about-band img {
  width: 100%;
  max-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
}

.final-cta {
  text-align: center;
}

.final-cta h2,
.final-cta p,
.final-cta .button-row {
  margin-inline: auto;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
  padding-bottom: 34px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-social,
.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-social a {
  color: inherit;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.social-list {
  margin-top: 10px;
}

.social-list a {
  min-height: auto;
}

.page-hero {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 130px) clamp(18px, 4vw, 56px) clamp(36px, 6vw, 72px);
  text-align: center;
}

.page-hero h1,
.page-hero p {
  margin-inline: auto;
}

.work-page-hero {
  width: min(1440px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  text-align: left;
}

.work-page-hero h1,
.work-page-hero p {
  margin-inline: 0;
}

.work-page-hero h1 {
  max-width: 930px;
  font-size: clamp(4.4rem, 8.6vw, 9.8rem);
  line-height: 0.88;
}

.work-page-hero .eyebrow {
  margin-bottom: 18px;
}

.work-page-hero .work-hero-copy > p:last-child {
  max-width: 940px;
}

.work-hero-short {
  justify-self: center;
  width: min(100%, 360px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #05080b;
  box-shadow: 0 22px 60px rgba(18, 24, 23, 0.18);
}

.work-hero-short iframe {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  background: #05080b;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-row button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-weight: 850;
}

.filter-row button[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

.case-study {
  display: grid;
  gap: 18px;
}

.case-block {
  padding: clamp(22px, 4vw, 42px);
}

.case-block h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.3rem);
}

.two-column-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.two-column-list li {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.resume-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 0.44fr);
  gap: clamp(22px, 5vw, 60px);
  align-items: start;
}

.resume-stack {
  display: grid;
  gap: 16px;
}

.resume-card,
.contact-card {
  padding: clamp(22px, 4vw, 36px);
  box-shadow: none;
}

.resume-card h2,
.contact-card h2 {
  max-width: none;
  margin-bottom: 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  font-weight: 900;
  line-height: 1.1;
}

.resume-card ul,
.contact-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-direct {
  display: grid;
  align-content: center;
  min-height: 340px;
}

.contact-direct h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.1rem, 4.5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.contact-direct > p:not(.eyebrow):not(.contact-email) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.5;
}

.contact-email {
  margin: 18px 0 0;
  font-weight: 850;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-weight: 850;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  color: var(--accent);
  font-weight: 850;
}

.hidden {
  display: none !important;
}

.aza-project-page {
  background:
    radial-gradient(circle at 10% 12%, rgba(242, 184, 75, 0.1), transparent 28rem),
    radial-gradient(circle at 88% 40%, rgba(242, 184, 75, 0.08), transparent 26rem),
    linear-gradient(180deg, #080c0a 0%, #020605 100%);
  color: #eef3f0;
}

.aza-project-page h1,
.aza-project-page h2,
.aza-project-page h3 {
  color: #f4f7fb;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 950;
}

.aza-project-page p {
  color: rgba(222, 228, 224, 0.72);
  font-weight: 750;
}

.aza-header {
  border-bottom-color: rgba(242, 184, 75, 0.16);
  background: rgba(4, 8, 7, 0.88);
}

.aza-header .brand,
.aza-header .site-nav a {
  color: #eef3f0;
}

.aza-header .site-nav a:not(.resume-link) {
  color: rgba(238, 243, 240, 0.72);
}

.aza-header .resume-link {
  border-color: rgba(242, 184, 75, 0.58);
  color: #f2b84b !important;
}

.aza-project-hero,
.aza-project-steps,
.aza-footer {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding-inline: clamp(18px, 4vw, 56px);
}

.aza-project-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.98fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-top: clamp(54px, 8vw, 110px);
  padding-bottom: clamp(54px, 8vw, 100px);
}

.aza-project-board {
  display: grid;
  gap: 14px;
}

.aza-project-board img,
.aza-project-steps img {
  width: 100%;
  border: 1px solid rgba(242, 184, 75, 0.18);
  object-fit: cover;
}

.aza-title-art {
  aspect-ratio: 16 / 9;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.aza-project-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.aza-project-thumbs img {
  aspect-ratio: 16 / 9;
}

.aza-project-copy .eyebrow,
.aza-project-steps span {
  color: #f2b84b;
}

.aza-project-copy h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 7.6vw, 7.8rem);
  line-height: 0.92;
}

.aza-project-copy p {
  max-width: 610px;
  margin-bottom: 30px;
}

.aza-project-copy .button.primary {
  border-color: #f2b84b;
  background: #f2b84b;
  color: #110c04;
}

.aza-project-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: clamp(64px, 8vw, 120px);
}

.aza-project-steps article {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(242, 184, 75, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 100%, rgba(242, 184, 75, 0.1), transparent 9rem),
    rgba(255, 255, 255, 0.035);
  padding: 24px;
}

.aza-project-steps span {
  display: block;
  margin-bottom: 16px;
  font-family: "Courier New", ui-monospace, monospace;
  font-weight: 900;
}

.aza-project-steps img {
  width: min(100%, 190px);
  aspect-ratio: 16 / 9;
  margin: 0 auto 26px;
}

.aza-project-steps h2 {
  margin-bottom: 28px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 0.94;
}

.aza-project-steps p {
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.5;
}

.aza-footer {
  border-top-color: rgba(242, 184, 75, 0.18);
  color: rgba(238, 243, 240, 0.64);
}

.aza-footer a {
  color: rgba(238, 243, 240, 0.78);
}

.ad-project-page {
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 61, 90, 0.1), transparent 28rem),
    radial-gradient(circle at 0% 100%, rgba(0, 194, 255, 0.08), transparent 26rem),
    linear-gradient(180deg, #080d10 0%, #05090b 100%);
  color: #f4f7fb;
}

.ad-project-page h1,
.ad-project-page h2,
.ad-project-page h3 {
  color: #f4f7fb;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 950;
}

.ad-project-page p {
  color: rgba(224, 232, 236, 0.72);
}

.ad-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(5, 9, 11, 0.88);
}

.ad-header .brand,
.ad-header .site-nav a {
  color: #f4f7fb;
}

.ad-header .site-nav a:not(.resume-link) {
  color: rgba(244, 247, 251, 0.72);
}

.ad-header .resume-link {
  border-color: rgba(255, 61, 90, 0.58);
  color: #ff5b72 !important;
}

.ad-project-hero,
.ad-footer {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding-inline: clamp(18px, 4vw, 56px);
}

.ad-project-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(54px, 7vw, 96px);
}

.ad-project-copy h1 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  line-height: 0.92;
}

.ad-project-copy p {
  max-width: 560px;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.ad-project-copy .button.primary {
  border-color: #ff3d5a;
  background: #ff3d5a;
}

.ad-capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin-top: 26px;
}

.ad-capability-list span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 14px;
  color: rgba(244, 247, 251, 0.86);
  font-weight: 850;
}

.ad-project-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.56fr);
  gap: 14px;
  align-items: stretch;
}

.ad-video-frame,
.ad-side-stack figure,
.ad-side-stack article {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.ad-video-frame video,
.ad-side-stack img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ad-video-frame {
  min-height: 620px;
}

.ad-side-stack {
  display: grid;
  gap: 14px;
}

.ad-side-stack figure {
  min-height: 250px;
  background: #fff;
}

.ad-side-stack article {
  padding: 22px;
}

.ad-side-stack .eyebrow {
  color: #00c2ff;
}

.ad-side-stack ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ad-side-stack li {
  color: rgba(244, 247, 251, 0.86);
  font-weight: 850;
  line-height: 1.25;
}

.ad-footer {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: rgba(244, 247, 251, 0.64);
}

.ad-footer a {
  color: rgba(244, 247, 251, 0.78);
}

@media (max-width: 1120px) {
  .hero,
  .split,
  .strategy-heading,
  .case-preview,
  .about-hero,
  .about-story,
  .work-page-hero,
  .featured-video-band,
  .about-band,
  .resume-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .work-page-hero {
    text-align: center;
  }

  .work-page-hero h1,
  .work-page-hero p {
    margin-inline: auto;
  }

  .work-page-hero h1 {
    max-width: 980px;
  }

  .aza-project-hero {
    grid-template-columns: 1fr;
  }

  .ad-project-hero,
  .ad-project-proof {
    grid-template-columns: 1fr;
  }

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

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

  .process-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .menu-button {
    position: relative;
    z-index: 60;
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
  }

  .menu-lines,
  .menu-lines::before,
  .menu-lines::after {
    display: block;
    width: 21px;
    height: 2px;
    background: var(--ink);
    content: "";
  }

  .menu-lines::before {
    transform: translateY(-7px);
  }

  .menu-lines::after {
    transform: translateY(5px);
  }

  .site-nav {
    position: fixed;
    inset: 76px 12px auto;
    display: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 16px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .resume-link {
    padding: 12px !important;
  }

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

  .work-card.featured {
    grid-column: span 2;
  }

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

  .work-page-hero {
    padding-top: 44px;
  }

  .work-page-hero h1 {
    font-size: clamp(3.2rem, 14vw, 5.1rem);
    line-height: 0.92;
  }

  .work-hero-short {
    width: min(100%, 310px);
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .hero {
    min-height: auto;
  }

  .button-row,
  .button,
  .text-link {
    width: 100%;
  }

  .work-grid,
  .capability-grid,
  .process-list,
  .about-values,
  .aza-project-steps,
  .ad-capability-list,
  .two-column-list {
    grid-template-columns: 1fr;
  }

  .about-hero-copy h1 {
    font-size: clamp(2.7rem, 12vw, 4.4rem);
  }

  .about-family-photo img {
    aspect-ratio: 16 / 11;
  }

  .ad-video-frame {
    min-height: 420px;
  }

  .work-card.featured {
    grid-column: auto;
  }

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

  .case-media img:first-child {
    transform: none;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
