/* ============================================================
   FONTS
   ============================================================ */

@font-face {
  font-family: 'Tungsten';
  src: url('../fonts/TungstenNarrow-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'News701';
  src: url('../fonts/News701BTRoman.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'News701';
  src: url('../fonts/News701BTItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'News701';
  src: url('../fonts/News701BTBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'News701', Georgia, serif;
  color: #1a1a1a;
  background: #B4B148;
}

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

ul {
  list-style: none;
}

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

/* ============================================================
   SECTION LABEL  (small caps headings: WORK, RECENT MEDIA DIET)
   ============================================================ */

.section-label {
  font-family: 'News701', Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12vh 15vw;
}

.hero-card {
  display: flex;
  width: 100%;
  max-width: 1200px;
  gap: 6vw;
  min-height: 76vh;
}

/* ── Personal (left column) ─────────────────────────────── */

.personal {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.personal__name {
  font-family: 'Tungsten', Impact, sans-serif;
  font-weight: 600;
  font-size: clamp(3.5rem, 7.5vw, 6.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.personal__tagline {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 22em;
}

/* ── Media diet ──────────────────────────────────────────── */

.personal__media {
  margin-top: auto;
  padding-top: 3rem;
}

.media-list {
  border-top: 2px solid black;
  padding-top: 0.85rem;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.media-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 0;
  gap: 0.6rem;
}

.media-list__icon {
  flex-shrink: 0;
  opacity: 0.45;
  display: flex;
  align-items: center;
}

.media-list__title {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s;
}

a.media-list__title:hover {
  color: #fff;
}

.media-list__link {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.15s;
}

.media-list__link:hover {
  color: #fff;
}

/* ── Work (right column) ─────────────────────────────────── */

.work {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.work__list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.work-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid #1a1a1a;
  padding: 1.5rem 0 1.25rem;
  flex: 1;
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s;
}

.work-item:hover {
  color: #fff;
  border-color: #fff;
}

.work-item:hover .work-item__arrow {
  filter: brightness(0) invert(1);
}

.work-item__title {
  display: block;
  font-family: 'News701', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
}

.work-item__subtitle {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  margin-bottom: 0.4rem;
}

.work-item__arrow {
  width: clamp(32px, 3.5vw, 48px);
  height: auto;
  flex-shrink: 0;
  transition: filter 0.15s;
}

/* ── Work footer (CV + Instagram) ────────────────────────── */

.work__footer {
  display: flex;
  align-items: flex-end;
  margin-top: 1.25rem;
  gap: 16px;
}

.work__footer-item {
  flex: 1;
  border-top: 2px solid black;
  padding: 1.25rem 0 0.75rem;
  transition: color 0.15s, border-color 0.15s;
}

.work__footer-item:hover {
  color: #fff;
  border-color: #fff;
}

.work__footer-item--social {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.work__footer-label {
  font-size: 0.9rem;
  line-height: 1.45;
}

.work__footer-icon:hover {
  opacity: 0.6;
}

/* ============================================================
   FEATURED PROJECTS
   ============================================================ */

.featured {
  padding: 6rem 15vw;
}

.project-card {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0;
  border-top: 2px solid #1a1a1a;
  padding: 4rem 0;
}

.project-card__image {
  overflow: hidden;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card__body {
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.project-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.project-card__category {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-card__cta img {
  width: 36px;
  height: 36px;
  transition: opacity 0.2s;
}

.project-card__cta:hover img {
  opacity: 0.6;
}

.project-card__title {
  font-family: 'Tungsten', Impact, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.project-card__desc {
  font-size: 1rem;
  line-height: 1.55;
  max-width: 28em;
}

/* ============================================================
   PROJECT DETAIL PAGE
   ============================================================ */

body.page-project {
  background: #F7ECEA;
}

.site-nav {
  width: 100%;
  padding: 0;
}

.site-nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.5rem 1.5rem;
}

.site-nav__brand,
.site-nav__categories a,
.site-nav__contact {
  font-family: 'Tungsten', Impact, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  transition: opacity 0.15s;
}

.site-nav__brand {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.site-nav__brand:hover {
  opacity: 0.6;
}

.site-nav__categories {
  display: flex;
  gap: 3rem;
}

.site-nav__categories a {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  opacity: 0.5;
  padding-bottom: 2px;
}

.site-nav__categories a:hover {
  opacity: 1;
}

.site-nav__categories a.is-active {
  opacity: 1;
  border-bottom: 1.5px solid #1a1a1a;
}

.site-nav__contact {
  text-align: right;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.site-nav__contact:hover {
  opacity: 0.6;
}

.site-nav__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.75rem;
}

.site-nav__right a.is-active {
  border-bottom: 1.5px solid #1a1a1a;
  padding-bottom: 2px;
}

/* Language toggle — plain text matching About / Contact, underlined like an
   active nav item. Shows the current language; clicking switches to the other. */
.site-nav__lang {
  font-family: 'Tungsten', Impact, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.15s;
}

.site-nav__lang:hover {
  opacity: 0.6;
}

/* Temporarily hide language switching until the Italian site is ready. */
.site-nav__lang,
.nav-lang-mobile {
  display: none !important;
}

/* Homepage minimal nav — contact only, out of flow */
.site-nav--minimal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.site-nav--minimal .site-nav__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
}

.nav-mobile-menu {
  display: none;
}

.project-cover {
  padding: 0 24px;
}

.project-cover img {
  width: 100%;
  max-height: 100vh;
  object-fit: cover;
  display: block;
}

.project-header {
  padding: 4rem 15vw 4rem;
}

.project-header__content {
  max-width: 960px;
}

.project-header__title {
  font-family: 'Tungsten', Impact, sans-serif;
  font-weight: 600;
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.project-header__intro {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 32em;
}

.project-main {
  display: flex;
  flex-direction: column;
}

.project-text {
  padding: 4rem 15vw 6rem;
  max-width: 960px;
  margin: 0 auto;
}

.project-text h2 {
  font-family: 'Tungsten', Impact, sans-serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.project-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* ── Strategy project: three-column layout ───────────────── */

.strategy-hero {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding: 0 24px;
  align-items: stretch;
  height: 77vh;
}

.strategy-hero__image {
  grid-column: span 2;
  overflow: hidden;
}

.strategy-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.strategy-hero__intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}


.strategy-hero__title {
  font-family: 'Tungsten', Impact, sans-serif;
  font-weight: 600;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.strategy-hero__note {
  font-style: italic;
  line-height: 1.5;
  opacity: 0.5;
  margin-bottom: 0;
}

.strategy-hero__lead {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.strategy-hero__text {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.65;
  margin-bottom: 0.75rem;
}

.project-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding: 0 24px;
  align-items: stretch;
  min-height: 520px;
  margin: 4rem 0;
}

.project-section h2 {
  font-family: 'Tungsten', Impact, sans-serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.project-section p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.project-section__text {
  padding: 4rem 2.5rem 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Centered text-only section (e.g. "Still curious?") */
.project-section--centered {
  display: flex;
  justify-content: center;
  min-height: auto;
  padding: 5rem 24px;
}

.project-section--centered .project-section__text {
  max-width: 640px;
  text-align: center;
  padding: 0;
}

/* Diagram inside a section row (e.g. process diagram) */
.project-section__diagram {
  grid-column: span 2;
  display: flex;
  align-items: center;
}

.project-section__diagram img {
  width: 100%;
  object-fit: contain;
  display: block;
}

/* Wide image spanning two columns */
.project-section__image--wide {
  grid-column: span 2;
  overflow: hidden;
}

/* Two stacked images in one column */
.project-section__stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
  overflow: hidden;
}

.project-section__stack img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  display: block;
}

/* Diagram spanning two columns */
.project-diagram {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding: 1rem 24px 2rem;
}

.project-diagram img {
  grid-column: span 2;
  width: 100%;
  display: block;
}

/* ── Image grids (art direction projects) ────────────────── */

.project-grids {
  padding: 0 15vw 2rem;
}

.grid-big {
  width: 100%;
  margin-bottom: 2rem;
}

.grid-big img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.grid-medium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.grid-medium img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.grid-small {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.grid-small:last-child {
  margin-bottom: 4rem; /* Extra space before next text */
}

.grid-small img {
  width: 100%;
  aspect-ratio: 3 / 5;
  object-fit: cover;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  padding: 6rem 15vw 3rem;
  background: #1a1a1a;
  color: #f4f4f4;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 4rem;
  margin-bottom: 2rem;
}

.footer__title {
  font-family: 'Tungsten', Impact, sans-serif;
  font-weight: 600;
  font-size: clamp(4rem, 8vw, 6.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer__text {
  font-size: 1.1rem;
  line-height: 1.5;
  max-width: 26em;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.footer__email {
  display: inline-block;
  font-family: 'News701', Georgia, serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  border-bottom: 2px solid transparent;
  transition: opacity 0.15s, color 0.15s;
}

.footer__email:hover {
  color: #B4B148;
}

.footer__details {
  display: flex;
  justify-content: flex-end;
  gap: 4rem;
  padding-top: 1rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__label {
  font-family: 'News701', Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}

.footer__info {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.8;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__nav a {
  font-size: 1rem;
  opacity: 0.8;
  transition: opacity 0.15s, color 0.15s;
}

.footer__nav a:hover {
  opacity: 1;
  color: #B4B148;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 0.85rem;
  opacity: 0.5;
}

/* ============================================================
   MOBILE  (≤ 768px)
   ============================================================ */

@media (max-width: 768px) {

  .hero {
    padding: 0;
    align-items: stretch;
    min-height: 100svh;
  }

  .hero-card {
    flex-direction: column;
    gap: 0;
    min-height: 100svh;
    padding: 2rem 1.5rem;
  }

  .personal {
    flex: 0 0 auto;
  }

  .personal__name {
    font-size: 5.5rem;
    margin-bottom: 1rem;
  }

  .personal__tagline {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 14em;
  }

  /* Hide media diet on mobile */
  .personal__media {
    display: none;
  }

  /* Hide subtitles on mobile */
  .work-item__subtitle {
    display: none;
  }

  .work {
    flex: 1;
    justify-content: flex-end;
    margin-top: 3rem;
  }

  .work__list {
    flex: 0 0 auto;
  }

  .section-label {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
  }

  .work-item {
    padding: 1rem 0 2rem;
  }

  .work-item__title {
    font-size: 1.75rem;
  }

  .work-item__arrow {
    width: 28px;
  }

  .work__footer {
    margin-top: 0.75rem;
  }

  .work__footer-item {
    padding-top: 1rem;
  }

  .work__footer-link,
  .work__footer-label {
    font-size: 0.8rem;
  }

  /* Featured & footer */
  .featured {
    padding: 3rem 1.5rem;
  }

  .project-card {
    grid-template-columns: 1fr;
    padding: 2rem 0;
  }

  .project-card__image {
    aspect-ratio: 3 / 2;
    margin-bottom: 1.5rem;
  }

  .project-card__body {
    padding: 0;
  }

  .project-card__title {
    font-size: 3rem;
  }

  .project-card__desc {
    font-size: 0.9rem;
  }

  .footer {
    padding: 4rem 1.5rem 2rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer__details {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
  }

  /* Project cover mobile */
  .project-cover {
    padding: 0 1.25rem;
  }

  .project-cover img {
    aspect-ratio: 3 / 4;
    max-height: 50vh;
  }

  /* Project detail mobile overrides — hamburger nav */
  .site-nav__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
  }

  .site-nav__categories {
    display: none;
  }

  .site-nav__contact {
    display: none;
  }

  /* Language toggle lives only inside the hamburger menu on mobile,
     never in the top bar. */
  .site-nav__inner .site-nav__lang {
    display: none;
  }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }

  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #1a1a1a;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav-hamburger.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .nav-hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-hamburger.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .nav-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.25rem 2.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
  }

  .nav-mobile-menu.is-open {
    display: flex;
  }

  .nav-mobile-menu a {
    font-family: 'Tungsten', Impact, sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .nav-mobile-menu a.is-active {
    border-bottom: 1.5px solid #1a1a1a;
    align-self: flex-start;
  }

  /* Mobile menu language switch — full names, current one underlined */
  .nav-lang-mobile {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    font-family: 'Tungsten', Impact, sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .nav-lang-mobile a {
    opacity: 0.45;
  }

  .nav-lang-mobile a.is-active {
    opacity: 1;
    border-bottom: 1.5px solid currentColor;
    padding-bottom: 2px;
    align-self: auto;
  }

  .nav-lang-mobile__sep {
    opacity: 0.3;
  }

  .project-header {
    padding: 2rem 1.5rem 3rem;
  }

  .project-header__title {
    font-size: 4rem;
  }

  .project-text {
    padding: 3rem 1.5rem;
  }

  .strategy-hero {
    grid-template-columns: 1fr;
    padding: 0 1.25rem;
  }

  .strategy-hero__image {
    grid-column: span 1;
  }

  .strategy-hero__image img {
    height: 33vh;
    aspect-ratio: unset;
  }

  .strategy-hero__intro {
    padding: 0 0 1.5rem;
  }

  .strategy-hero__title {
    font-size: 4rem;
  }

  .project-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.5rem 1.25rem;
    min-height: auto;
  }

  .project-section__text {
    padding: 0;
  }

  .project-section--centered {
    padding: 2.5rem 1.25rem;
  }

  .project-diagram {
    grid-template-columns: 1fr;
    padding: 0 1.25rem 1.5rem;
  }

  .project-diagram img {
    grid-column: span 1;
  }

  .project-section__diagram {
    grid-column: span 1;
  }

  .project-grids {
    padding: 0 1.5rem;
  }

  .grid-medium,
  .grid-small {
    grid-template-columns: 1fr; /* Stack on mobile */
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .grid-big img {
    aspect-ratio: 3 / 4;
  }

  .grid-small img {
    aspect-ratio: 1 / 1;
  }
}

/* ============================================================
   CURSOR GALLERY TRAIL
   ============================================================ */

.cursor-gallery {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 100; /* Ensuring it's above other elements */
  overflow: hidden;
  /* Disable on mobile natively using a media query inside the class isn't strictly necessary if JS handles it, 
     but good practice to hide anyway */
}

@media (max-width: 768px) {
  .cursor-gallery {
    display: none;
  }
}

.cursor-img {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(120px, 15vw, 220px); /* Responsive sizing */
  /* Assuming the thumnails have different aspect ratios, we don't force it 
     but we can set max-width so they don't get huge. */
  object-fit: cover;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.15s ease;
  will-change: transform, opacity;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15); /* Nice hover depth */
}

.cursor-img.is-active {
  opacity: 1;
}

/* ============================================================
   SECTION PAGES
   ============================================================ */

body.page-section {
  background: #F2F0EC;
}

/* ── Section Hero ──────────────────────────────────────────── */

.section-hero {
  padding: 8rem 15vw 4rem;
}

.section-hero__content {
  max-width: 960px;
}

.section-hero__title {
  font-family: 'Tungsten', Impact, sans-serif;
  font-weight: 600;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.section-hero__lead {
  font-size: 1.2rem;
  line-height: 1.55;
  max-width: 30em;
}

/* ── Explainer ─────────────────────────────────────────────── */

.section-explainer {
  padding: 2rem 15vw 4rem;
}

.section-explainer__content {
  max-width: 640px;
}

.section-explainer__title {
  font-family: 'News701', Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.section-explainer__text p {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.section-explainer__text p:last-child {
  margin-bottom: 0;
}

/* ── Capabilities ──────────────────────────────────────────── */

.section-capabilities {
  padding: 2rem 15vw 5rem;
}

.section-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.capability {
  border-top: 2px solid #1a1a1a;
  padding-top: 1.25rem;
}

.capability__title {
  font-family: 'News701', Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.capability__text {
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ── Section Projects (In Practice) ────────────────────────── */

.section-projects {
  padding: 2rem 15vw 4rem;
}

.section-projects__heading {
  font-family: 'News701', Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid #1a1a1a;
}

.section-project-entry {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 2.5rem;
  border-top: none;
  padding: 2rem 0;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}

.section-project-entry:last-child {
  border-bottom: none;
}

.section-project-entry:hover {
  border-color: rgba(26, 26, 26, 0.4);
}

.section-project-entry__image {
  overflow: hidden;
}

.section-project-entry__image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.section-project-entry__tag {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.4rem;
}

.section-project-entry__title {
  font-family: 'Tungsten', Impact, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section-project-entry__desc {
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 28em;
  opacity: 0.7;
}

.section-project-entry__arrow {
  align-self: center;
  transition: filter 0.15s;
}

.section-project-entry__arrow img {
  width: clamp(32px, 3.5vw, 48px);
  height: auto;
}

.section-project-entry:hover .section-project-entry__arrow img {
  filter: brightness(0) invert(1);
}

.section-projects__closing {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
  max-width: 36em;
  padding-top: 2.5rem;
  opacity: 0.55;
}

/* ── Strategy: hero + explainer side by side ──────────────── */

.section-intro-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.page-section--strategy .section-intro-row .section-hero {
  padding: 4rem 3rem 4rem 15vw;
}

.page-section--strategy .section-intro-row .section-explainer {
  padding: 8rem 15vw 4rem 3rem;
}

/* ── Art Direction & Self-initiated: narrower margins ─────── */

.page-section--art-direction .section-hero,
.page-section--self-initiated .section-hero {
  padding: 4rem 4vw 2rem;
}

.page-section--art-direction .featured,
.page-section--self-initiated .featured {
  padding: 2rem 4vw;
}

/* ── Art Direction & Self-initiated: larger horizontal thumbs  */

.page-section--art-direction .project-card,
.page-section--self-initiated .project-card {
  grid-template-columns: 3fr 1fr;
}

.page-section--art-direction .project-card__image,
.page-section--self-initiated .project-card__image {
  aspect-ratio: 16 / 9;
}

/* Arrow at top, title+desc at bottom of card body */
.page-section--art-direction .project-card__body,
.page-section--self-initiated .project-card__body {
  justify-content: space-between;
}

/* ── Strategy: larger horizontal project entry thumbs ──────── */

.section-project-entry {
  grid-template-columns: 3fr 2fr auto;
}

/* ── Section Pages — Mobile (≤ 768px) ──────────────────────── */

@media (max-width: 768px) {

  /* Homepage minimal nav stays right-aligned on mobile */
  .site-nav--minimal .site-nav__inner {
    justify-content: flex-end;
  }

  /* Strategy intro row: stack vertically */
  .section-intro-row {
    grid-template-columns: 1fr;
  }

  .page-section--strategy .section-intro-row .section-hero {
    padding: 6rem 1.5rem 1.5rem;
  }

  .page-section--strategy .section-intro-row .section-explainer {
    padding: 0 1.5rem 3rem;
  }

  /* Art direction / self-initiated: mobile padding + layout */
  .page-section--art-direction .section-hero,
  .page-section--self-initiated .section-hero {
    padding: 5rem 1.5rem 1.5rem;
  }

  .page-section--art-direction .section-hero__lead,
  .page-section--self-initiated .section-hero__lead {
    font-size: 0.95rem;
  }

  .page-section--art-direction .featured,
  .page-section--self-initiated .featured {
    padding: 1.5rem 1.5rem;
  }

  /* Revert card grid to single column on mobile */
  .page-section--art-direction .project-card,
  .page-section--self-initiated .project-card {
    grid-template-columns: 1fr;
  }

  /* Project card title: smaller on mobile */
  .page-section--art-direction .project-card__title,
  .page-section--self-initiated .project-card__title {
    font-size: 2rem;
  }

  /* Card body: revert to flex-end stacking on mobile */
  .page-section--art-direction .project-card__body,
  .page-section--self-initiated .project-card__body {
    justify-content: flex-end;
    padding: 0;
  }

  /* Image: keep wide aspect ratio on mobile */
  .page-section--art-direction .project-card__image,
  .page-section--self-initiated .project-card__image {
    aspect-ratio: 16 / 9;
    margin-bottom: 1rem;
  }

  .section-hero {
    padding: 6rem 1.5rem 2.5rem;
  }

  .section-hero__title {
    font-size: 5rem;
  }

  .section-hero__lead {
    font-size: 1.05rem;
  }

  .section-explainer {
    padding: 1.5rem 1.5rem 3rem;
  }

  /* Match the smaller capability text size on mobile */
  .section-explainer__text p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .section-capabilities {
    padding: 0 1.5rem 3rem;
  }

  .section-capabilities__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-projects {
    padding: 1.5rem 1.5rem 3rem;
  }

  .section-project-entry {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .section-project-entry__body {
    padding: 8px 0 16px;
  }

  .section-project-entry__image {
    max-width: 100%;
  }

  .section-project-entry__arrow {
    display: none;
  }
}

/* ============================================================
   CURRENTLY LINE (homepage hero + about page)
   ============================================================ */

.currently {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 0.6rem;
  max-width: 26em;
}

/* ============================================================
   CLIENT STRIP (homepage + about page)
   ============================================================ */

.client-strip {
  padding: 4rem 15vw;
  text-align: center;
  border-top: 1px solid rgba(26, 26, 26, 0.15);
  border-bottom: 1px solid rgba(26, 26, 26, 0.15);
}

.client-strip__label {
  font-family: 'News701', Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 1.25rem;
}

.client-strip__names {
  font-family: 'Tungsten', Impact, sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.client-strip__names span + span::before {
  content: " · ";
  opacity: 0.4;
  margin: 0 0.4em;
}

/* On the about page, the client strip sits inside the page background */
.page-about .client-strip {
  border: none;
  padding: 3rem 0 1rem;
  text-align: left;
}

.page-about .client-strip__label {
  margin-bottom: 1rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

body.page-about {
  background: #F2F0EC;
}

.about-hero {
  padding: 8rem 15vw 3rem;
}

.about-hero__title {
  font-family: 'Tungsten', Impact, sans-serif;
  font-weight: 600;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.about-hero__lead {
  font-size: 1.35rem;
  line-height: 1.5;
  max-width: 28em;
  font-style: italic;
}

.about-body {
  padding: 2rem 15vw 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 5rem;
  align-items: start;
}

.about-block {
  max-width: 32em;
}

.about-block--full {
  grid-column: 1 / -1;
  max-width: none;
}

.about-block__title {
  font-family: 'News701', Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-top: 2px solid #1a1a1a;
  padding-top: 1rem;
  margin-bottom: 1.25rem;
}

.about-block__body p {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.about-block__body p:last-child {
  margin-bottom: 0;
}

.about-block__body a {
  border-bottom: 1px solid currentColor;
  transition: opacity 0.15s;
}

.about-block__body a:hover {
  opacity: 0.6;
}

.about-cv {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: 'Tungsten', Impact, sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 2px solid #1a1a1a;
  padding-bottom: 2px;
  transition: opacity 0.15s;
}

.about-cv:hover {
  opacity: 0.6;
}

/* ============================================================
   NEXT PROJECT (end of project pages)
   ============================================================ */

.next-project {
  border-top: 2px solid #1a1a1a;
  margin: 0 24px;
  padding: 2.5rem 0 3rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.5rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s;
}

.next-project:hover {
  opacity: 0.7;
}

.next-project__thumb {
  width: clamp(120px, 14vw, 180px);
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.next-project__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.next-project__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.next-project__label {
  font-family: 'News701', Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
}

.next-project__title {
  font-family: 'Tungsten', Impact, sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.next-project__arrow img {
  width: clamp(32px, 3.5vw, 48px);
  height: auto;
}

/* ============================================================
   MOBILE — new blocks
   ============================================================ */

@media (max-width: 768px) {

  .client-strip {
    padding: 2.5rem 1.5rem;
  }

  /* Hide the homepage "Currently" line on mobile to keep the hero from feeling cramped.
     The same line still appears in full on the About page. */
  .hero .currently {
    display: none;
  }

  .about-hero {
    padding: 6rem 1.5rem 2rem;
  }

  .about-hero__title {
    font-size: 5rem;
  }

  .about-hero__lead {
    font-size: 1.1rem;
  }

  .about-body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 1rem 1.5rem 3rem;
  }

  .page-about .client-strip {
    padding: 1.5rem 0;
  }

  .next-project {
    margin: 0 1.25rem;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0 2.5rem;
  }

  .next-project__arrow {
    display: none;
  }
}

/* ============================================================
   RANDOM THOUGHTS  (hidden blog — reachable by direct link only)
   ============================================================ */

body.page-blog {
  background: #F2F0EC;
}

/* Nav centre title that stands in for the category links */
.site-nav__section-title {
  font-family: 'Tungsten', Impact, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-header {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 1.5rem 1.75rem;
  border-bottom: 2px solid #1a1a1a;
}

.blog-header__title {
  font-family: 'Tungsten', Impact, sans-serif;
  font-weight: 600;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.blog-header__lead {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  max-width: 34em;
  opacity: 0.75;
}

.blog {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
}

.thought {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(26, 26, 26, 0.15);
  scroll-margin-top: 2rem; /* breathing room when jumping to a #permalink */
}

.thought:first-child {
  border-top: none;
}

/* Subtle RSS chip in the header */
.blog-rss {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: 'News701', Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  padding: 0.35rem 0.65rem;
  opacity: 0.55;
  transition: opacity 0.15s;
}

.blog-rss:hover {
  opacity: 1;
}

.thought__meta {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 0.85rem;
}

.thought__date {
  font-family: 'News701', Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.55;
}

.thought__title {
  font-family: 'News701', Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  line-height: 1.25;
  margin-bottom: 1rem;
}

/* The title doubles as the post's permalink */
.thought__title a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.15s;
}

.thought__title a:hover {
  opacity: 0.5;
}

.thought__body p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.thought__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .blog-header {
    padding-top: 3rem;
  }

  .blog-header__title {
    font-size: 3rem;
  }
}
