:root {
  --ink: #171717;
  --muted: #6c6c6c;
  --line: #e9e7e3;
  --active: #efede8;
  --accent: #111;
  --blue: #0e8fbd;
  --content: 980px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-weight: 300;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  z-index: 100;
  padding: 8px 12px;
  background: #fff;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  width: min(var(--content), calc(100% - 32px));
  margin: 22px auto 0;
}

.brand {
  width: fit-content;
  margin: 0 auto;
  display: block;
  padding: 8px 0 18px;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: min(520px, 88vw);
  height: auto;
  object-fit: contain;
}

.menu-button {
  display: none;
  width: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  direction: rtl;
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
}

.main-nav a {
  padding: 6px 13px;
  color: #555;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  color: #111;
  background: var(--active);
}

main {
  width: min(var(--content), 100%);
  min-height: 55vh;
  margin: 0 auto;
  padding: 22px 0 50px;
}

.page-title {
  margin: 8px 16px 28px;
  font-size: clamp(27px, 4vw, 42px);
  font-weight: 400;
  text-align: center;
}

.home-hero {
  position: relative;
  min-height: 585px;
  overflow: hidden;
  background: #191817;
}

.home-hero img {
  width: 100%;
  height: 100%;
  min-height: 585px;
  object-fit: cover;
}

.home-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 48px;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0,0,0,.28);
}

.home-copy h1 {
  margin: 0;
  font-size: clamp(74px, 12vw, 126px);
  line-height: .9;
  letter-spacing: -5px;
}

.home-copy p {
  position: absolute;
  inset-block-end: 20px;
  margin: 0 20px;
  font-size: 13px;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 350px) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 70px);
  align-items: stretch;
  direction: rtl;
  margin: 28px 30px 20px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  background: #fff;
}

.about-copy {
  align-self: center;
  padding-block: clamp(6px, 2vw, 20px);
  background: #fff;
  font-size: 17px;
  line-height: 1.85;
  text-align: right;
}
.about-copy h1 { max-width: 16ch; margin: 8px 0 22px; font-size: clamp(36px, 4.5vw, 54px); line-height: 1.12; font-weight: 600; letter-spacing: -.025em; }
.about-copy p { max-width: 62ch; margin: 0 0 18px; }
.about-copy .about-lead { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); color: #252525; font-size: clamp(19px, 2vw, 22px); line-height: 1.65; font-weight: 500; }
.about-copy .about-closing { margin-top: 26px; padding: 2px 18px 2px 0; border-right: 3px solid var(--blue); color: #252525; font-weight: 600; }
.about-copy p:last-child { margin-bottom: 0; }
.eyebrow { color: var(--blue); font-size: 14px; font-weight: 700; letter-spacing: 2px; }
.about-photo { align-self: center; overflow: hidden; background: #f4f2ee; box-shadow: 0 18px 42px rgba(23, 23, 23, .12); }
.about-photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center top; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0 12px;
}

.gallery-button {
  position: relative;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #eee;
  cursor: zoom-in;
}

.gallery-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease, filter .28s ease;
}

.gallery-button:hover img,
.gallery-button:focus-visible img { transform: scale(1.035); filter: brightness(.9); }

.gallery.clients { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 34px 46px; padding: 24px 30px; }
.gallery.clients .gallery-button { aspect-ratio: 1.35; background: #fff; cursor: zoom-in; }
.gallery.clients img { object-fit: contain; }

.longform {
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 28px;
}

.feature {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) 1.1fr;
  gap: 44px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.feature:nth-child(even) { direction: ltr; }
.feature-copy { direction: ltr; font-size: 16px; line-height: 1.65; }
.feature-copy h2 { margin-top: 0; font-size: 28px; font-weight: 400; }
.feature-image { width: 100%; max-height: 540px; object-fit: contain; }
.feature-video { width: 100%; aspect-ratio: 16 / 9; background: #111; object-fit: contain; }
.video-placeholder {
  min-height: 245px;
  display: grid;
  place-content: center;
  gap: 14px;
  background: linear-gradient(145deg, #171717, #444);
  color: #fff;
  text-align: center;
}
.video-placeholder span { font-size: 46px; }
.video-placeholder strong { font-size: 18px; font-weight: 400; }

.specials-showcase {
  max-width: 980px;
  margin: 0 auto;
  padding: 10px 24px 42px;
}

.special-project {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.75fr);
  gap: clamp(28px, 4vw, 42px);
  align-items: start;
  padding: 28px 0 56px;
  border-bottom: 1px solid var(--line);
}

.special-project + .special-project { padding-top: 56px; }
.special-copy { direction: ltr; color: #111; font-size: 14px; line-height: 1.3; text-align: left; }
.special-copy p { margin: 0 0 2px; }
.special-copy .special-lead { margin-bottom: 9px; }
.ads-world-logo { width: 112px; height: auto; margin: 0 0 10px; }
.special-gallery { display: grid; gap: 8px; align-items: start; }
.special-gallery-pair { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.special-gallery-single { grid-template-columns: minmax(0, 322px); justify-content: end; }
.special-artwork { margin: 0; overflow: hidden; border: 1px solid #d9d7d2; border-radius: 5px; background: #fff; box-shadow: 0 2px 7px rgba(0, 0, 0, .12); }
.special-artwork img { width: 100%; height: auto; }

.posts { max-width: 900px; margin: 0 auto; padding: 10px 24px 30px; }
.post { display: grid; grid-template-columns: minmax(280px, .9fr) 1.1fr; gap: clamp(28px, 6vw, 64px); align-items: center; padding: 52px 0; border-bottom: 1px solid var(--line); }
.post:nth-child(even) .post-media { grid-column: 2; grid-row: 1; }
.post:nth-child(even) .post-copy { grid-column: 1; grid-row: 1; }
.post-media { display: grid; place-items: center; min-height: 260px; overflow: hidden; background: #fff !important; }
.post-media img { width: 100%; max-height: 440px; object-fit: contain; background: #fff; }
.post-copy { text-align: right; }
.post-number { display: inline-block; margin-bottom: 14px; color: var(--blue); font-size: 13px; font-weight: 700; letter-spacing: 2px; }
.post h2 { margin: 0 0 17px; font-size: clamp(25px, 4vw, 34px); line-height: 1.15; font-weight: 500; }
.post p { margin: 0 0 8px; font-size: 16px; line-height: 1.75; }

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 100px;
  padding: 34px 30px;
  direction: ltr;
}

.contact-form { display: grid; gap: 7px; direction: rtl; }
.contact-form label { font-size: 13px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid #1292c5;
  border-radius: 2px;
  padding: 8px;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: #111; }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button {
  justify-self: start;
  margin-top: 13px;
  min-width: 118px;
  padding: 10px 24px;
  border: 0;
  background: #111;
  color: #fff;
  cursor: pointer;
}
.contact-form button:disabled { opacity: .55; cursor: wait; }
.honeypot { position: absolute !important; inset-inline-start: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.form-status { min-height: 24px; margin: 7px 0 0; font-size: 14px; line-height: 1.5; }
.form-status.is-success { color: #14753b; }
.form-status.is-error { color: #a21d1d; }
.contact-copy { direction: rtl; padding-top: 20px; font-size: 28px; line-height: 1.5; font-weight: 600; }
.contact-direct { margin-top: 28px; font-size: 16px; font-weight: 400; }
.contact-direct a { display: block; margin-top: 8px; }

.site-footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 35px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer a { text-decoration: none; }

.lightbox {
  width: min(1100px, calc(100% - 34px));
  height: min(90vh, 900px);
  padding: 40px 22px 20px;
  border: 0;
  background: #111;
  color: #fff;
}
.lightbox::backdrop { background: rgba(0,0,0,.88); }
.lightbox img { width: 100%; height: calc(100% - 30px); object-fit: contain; }
.lightbox p { margin: 8px 0 0; text-align: center; }
.lightbox-close { position: absolute; inset-block-start: 6px; inset-inline-end: 12px; border: 0; background: none; color: #fff; font-size: 30px; cursor: pointer; }

@media (max-width: 850px) {
  .brand { padding-bottom: 12px; }
  .menu-button { display: block; }
  .main-nav { display: none; margin-top: 5px; padding: 7px; border: 1px solid var(--line); }
  .main-nav.is-open { display: grid; grid-template-columns: repeat(2, 1fr); }
  .main-nav a { text-align: center; }
  main { padding-top: 10px; }
  .home-hero, .home-hero img { min-height: 58vh; }
  .about { grid-template-columns: 1fr; gap: 30px; margin: 20px 16px; padding: 30px; }
  .about-photo { width: min(350px, 100%); margin: 0 auto; }
  .about-copy { padding-block: 0; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery.clients { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .feature, .feature:nth-child(even) { grid-template-columns: 1fr; gap: 22px; direction: rtl; }
  .special-project { grid-template-columns: 1fr; gap: 28px; }
  .special-gallery-single { justify-content: center; }
  .post, .post:nth-child(even) { grid-template-columns: 1fr; gap: 28px; }
  .post:nth-child(even) .post-media, .post:nth-child(even) .post-copy { grid-column: auto; grid-row: auto; }
  .contact-layout { grid-template-columns: 1fr; gap: 35px; padding: 24px; }
  .contact-copy { grid-row: 1; font-size: 23px; }
}

@media (max-width: 460px) {
  .site-header { width: calc(100% - 20px); margin-top: 10px; }
  .brand-logo { width: min(360px, 90vw); }
  .home-copy h1 { font-size: 70px; letter-spacing: -3px; }
  .home-hero, .home-hero img { min-height: 470px; }
  .gallery { gap: 2px; padding: 0; }
  .specials-showcase { padding-inline: 16px; }
  .special-project { padding-block: 22px 42px; }
  .special-project + .special-project { padding-top: 42px; }
  .special-copy { font-size: 13px; }
  .about { margin-inline: 10px; padding: 24px 20px; }
  .about-copy { font-size: 16px; line-height: 1.8; }
  .about-copy h1 { max-width: none; margin-bottom: 18px; font-size: 34px; }
  .about-copy .about-lead { margin-bottom: 20px; padding-bottom: 20px; font-size: 18px; }
  .posts { padding-inline: 18px; }
  .site-footer { font-size: 12px; }
}

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