/* ─── FONTS ──────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'DIN Next W1G';
  src: url('din-next-w1g/dinnextw1g_ultralight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'DIN Next W1G';
  src: url('din-next-w1g/dinnextw1g_ultralightitalic.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: 'DIN Next W1G';
  src: url('din-next-w1g/dinnextw1g_light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'DIN Next W1G';
  src: url('din-next-w1g/dinnextw1g_lightitalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'DIN Next W1G';
  src: url('din-next-w1g/dinnextw1g.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'DIN Next W1G';
  src: url('din-next-w1g/dinnextw1g_italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'DIN Next W1G';
  src: url('din-next-w1g/dinnextw1g_medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'DIN Next W1G';
  src: url('din-next-w1g/dinnextw1g_mediumitalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'DIN Next W1G';
  src: url('din-next-w1g/dinnextw1g_bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'DIN Next W1G';
  src: url('din-next-w1g/dinnextw1g_bolditalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'DIN Next W1G';
  src: url('din-next-w1g/dinnextw1g_heavy.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'DIN Next W1G';
  src: url('din-next-w1g/dinnextw1g_heavyitalic.otf') format('opentype');
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: 'DIN Next W1G';
  src: url('din-next-w1g/dinnextw1g_black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'DIN Next W1G';
  src: url('din-next-w1g/dinnextw1g_blackitalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}

/* ─── PAGE WRAPPER ───────────────────────────────────────────────────────── */
.page-content {
  max-width: 1036px;
  margin: 0 auto;
}

/* ─── RESET & BASE ───────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DIN Next W1G', Arial, sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  color: #000;
  background: #fff;
  overflow-x: hidden;
}

hr {
  border: none;
  border-top: 1px solid #000;
  margin: 0;
}

a {
  color: #000;
  text-decoration: none;
  text-decoration: underline;


}

nav a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  filter: saturate(0);
}

.gallery-item img {
  filter: none;
}

ul {
  padding-left: 1.2em;
}

li {
  margin-bottom: 0.4em;
}

i {
  font-style: italic;
  font-size: 13px;
  font-weight: 200;
}

/* ─── NAV ────────────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  padding: 1rem 3rem;
  border-bottom: 1px solid #000;
}

nav a {
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "image bio"
    "caption ."
    "nav .";
  column-gap: 3rem;
  row-gap: 1rem;
  padding: 3rem 3rem 4rem;
}

.hero-image   { grid-area: image;   min-width: 0; position: relative; overflow: hidden; }
.hero-right   { grid-area: bio;     min-width: 0; display: flex; align-items: center; }
.hero-caption { grid-area: caption; min-width: 0; }
.hero-nav     { grid-area: nav; }

.hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.featured-label {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 1rem;
}

.item-number {
  font-size: 13px;
  font-family: 'DIN Next W1G', sans-serif;
  letter-spacing: 0.05em;
  color: #555;
  flex-shrink: 0;
}

.item-role {
  font-size: 10.6px;
  font-weight: 300; 
}

.featured-desc {
  margin-top: 0.6rem;
  font-size: 13px;
  line-height: 1.6;
  max-width: 540px;
}

.hero-right {
  display: flex;
  align-items: center;
}

.hero-bio {
  font-size: 19px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-name {
  font-weight: 500;
}

/* ─── CONSULTANCY ────────────────────────────────────────────────────────── */
.consultancy {
  padding: 4rem 3rem;
}

.consultancy h2 {
  font-size: 30px;
  font-weight: 200;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.consultancy h2 strong {
  font-weight: 700;
}

.consultancy h2 sup {
  font-size: 0.5em;
  vertical-align: super;
}

.consultancy-sub {
  margin: 2rem 0 1.5rem;
  font-size: 19px;
}

.logos {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.logo-item img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.logo-item span {
  font-size: 13px;
  text-align: center;
  color: #555;
}

.and-more {
  font-size: 13px;
  color: #555;
  white-space: nowrap;
}

.footnote {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

.footnote sup {
  font-size: 0.75em;
}

/* ─── HERO NAV ───────────────────────────────────────────────────────────── */
.hero-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-nav .carousel-btn {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-size: 10px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  opacity: 1;
}


.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
  cursor: pointer;
  transition: opacity 0.2s;
}

.dot.active {
  opacity: 1;
}

.carousel-btn {
  background: none;
  border: none;
  font-size: 3rem;
  cursor: pointer;
  color: #000;
  line-height: 1;
  padding: 0;
  transition: opacity 0.15s;
}

.carousel-btn:hover {
  opacity: 0.4;
}

.carousel-btn:disabled {
  opacity: 0.15;
  cursor: default;
}


/* ─── OTHER EXPERIENCE ───────────────────────────────────────────────────── */
.other-experience {
  padding: 4rem 3rem;
}

.other-experience h2 {
  font-size: 30px;
  font-weight: 200;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2.5rem;
}

.experience-item {
  min-width: 0;
}

.experience-item h3 {
  font-size: 13px;
  font-weight: 200;
  line-height: 1.4;
  margin-bottom: 0.2rem;
}

.dates {
  font-size: 13px;
  color: #888;
  margin-bottom: 0.75rem;
}

.experience-item > p:not(.dates) {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.experience-item ul {
  font-size: 13px;
  line-height: 1.6;
}

/* ─── GALLERY ────────────────────────────────────────────────────────────── */
.gallery {
  padding: 0 3rem 4rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.gallery-item {
  min-width: 0;
}

.gallery-item-image-wrap {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}


.gallery-item-caption {
  margin-top: 0.4rem;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.gallery-item-caption .item-number {
  font-size: 13px;
  flex-shrink: 0;
}

.gallery-item-caption .item-role {
  font-size: 12.6px;
  font-weight: 300;
}

.gallery-item-caption .item-event {
  font-size: 13px;
  color: #555;
}

/* ─── CONTACT ────────────────────────────────────────────────────────────── */
.contact {
  padding: 4rem 3rem;
}

.contact-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.contact h2 {
  font-size: 30px;
  font-weight: 200;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.contact hr {
  margin-bottom: 1.5rem;
}

.contact-label {
  font-size: 13px;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-right {
  text-align: right;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */

/* Tablet: ≤ 900px */
@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
    gap: 1.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "bio"
      "image"
      "caption"
      "nav";
    padding: 2rem 1.5rem 3rem;
    gap: 1.5rem;
    column-gap: 0;
  }

  .hero-right {
    padding-top: 0;
    align-items: flex-start;
  }

  .hero-bio {
    font-size: 30px;
    margin: 2.5rem 0;
  }

  .consultancy,
  .other-experience,
  .contact {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .gallery {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .experience-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .experience-item:last-child {
    grid-column: 1 / -1;
  }
}

/* Mobile: ≤ 600px */
@media (max-width: 600px) {
  nav {
    padding: 0.75rem 1rem;
    gap: 1rem;
  }

  .hero {
    padding: 1.5rem 1rem 2rem;
    gap: 1rem;
  }

  .hero-bio {
    font-size: 30px;
  }

  .consultancy,
  .other-experience,
  .contact {
    padding: 2.5rem 1rem;
  }

  .gallery {
    padding: 0 1rem 2.5rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    justify-items: center;
  }

  .logo-item {
    width: 100%;
  }

  .logo-item img {
    width: 100%;
    height: 60px;
  }

  .carousel-btn {
    font-size: 2rem;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .experience-item:last-child {
    grid-column: auto;
  }

  .contact-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
