/* =========================================================
   Mebesius homepage — overlay styles on top of Apple Holiday base
   ========================================================= */

/* =========================================================
   PRIMARY NAV — top bar with brand + dropdown menu
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 60px);
  padding: 16px var(--gutter);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-family: var(--f-sans);
}
.nav__brand {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 200ms var(--ease);
}
.nav__brand:hover { color: var(--ink); }

.nav__menu { display: flex; }
.nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 36px);
  margin: 0;
  padding: 0;
}
.nav__item { position: relative; }
.nav__link {
  appearance: none;
  background: none;
  border: 0;
  padding: 8px 0;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 200ms var(--ease);
}
.nav__link:hover, .nav__item:hover > .nav__link { color: var(--ink); }
.nav__caret {
  font-size: 9px;
  opacity: 0.6;
  transition: transform 200ms var(--ease);
}
.nav__item--has-menu:hover .nav__caret { transform: translateY(2px); }

/* DROPDOWN PANELS */
.nav__dropdown {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 200ms var(--ease), transform 200ms var(--ease), visibility 200ms;
}
.nav__item--has-menu:hover .nav__dropdown,
.nav__item--has-menu:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown li { margin: 0; }
.nav__dropdown a {
  display: block;
  padding: 10px 24px;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-decoration: none;
  transition: background 150ms var(--ease), color 150ms var(--ease);
}
.nav__dropdown a:hover {
  background: var(--bg-soft);
  color: var(--ink);
}

/* On the index page, where the nav floats above the dark video hero,
   give it a transparent treatment at the top of the page */
.nav.nav--transparent {
  background: transparent;
  border-bottom: none;
}
.nav.nav--transparent .nav__brand,
.nav.nav--transparent .nav__link { color: rgba(255, 255, 255, 0.92); }
.nav.nav--transparent .nav__link:hover { color: #fff; }

/* HAMBURGER TOGGLE — hidden on desktop, visible on mobile */
.nav__toggle {
  display: none;
  appearance: none;
  background: none;
  border: 0;
  padding: 10px;
  margin: -10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
}
.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 240ms var(--ease), opacity 200ms var(--ease);
}
.nav.nav--open .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.nav--open .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav.nav--open .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE BREAKPOINT — 760px and below ===== */
@media (max-width: 760px) {
  .nav {
    flex-wrap: wrap;
    padding: 14px var(--gutter);
  }
  .nav__toggle { display: inline-flex; }

  .nav__menu {
    flex-basis: 100%;
    order: 3;
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms var(--ease);
  }
  .nav.nav--open .nav__menu {
    max-height: 100vh;
    overflow: auto;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 0 6px;
    width: 100%;
  }
  .nav__item { width: 100%; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav__item:last-child { border-bottom: none; }
  .nav__link {
    width: 100%;
    padding: 16px 0;
    justify-content: space-between;
    font-size: 13px;
    letter-spacing: 0.12em;
  }
  .nav__caret { font-size: 11px; opacity: 0.5; }

  /* Mobile dropdowns: expand inline, no floating panel */
  .nav__dropdown {
    position: static;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: var(--bg-soft);
    margin: 0 calc(var(--gutter) * -1);
    padding: 4px 0 10px;
    min-width: 0;
    width: calc(100% + var(--gutter) * 2);
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transform: none;
    overflow: hidden;
    transition: max-height 280ms var(--ease), opacity 200ms var(--ease), visibility 200ms;
  }
  .nav__item--has-menu.is-open .nav__dropdown {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
    padding-top: 6px;
    padding-bottom: 12px;
  }
  .nav__dropdown a {
    padding: 12px var(--gutter);
    font-size: 14px;
  }
  /* On mobile, disable hover-open — only the .is-open class opens */
  .nav__item--has-menu:hover .nav__dropdown,
  .nav__item--has-menu:focus-within .nav__dropdown {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
  }
  .nav__item--has-menu.is-open:hover .nav__dropdown,
  .nav__item--has-menu.is-open .nav__dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 600px;
  }
}

/* =========================================================
   NIKE SUB-NAV — shared bar that mounts on all Nike pages
   ========================================================= */
.nike-subnav {
  position: relative;
  width: 100%;
  background: #FA5400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vh, 28px) var(--gutter);
}
.nike-subnav__brand {
  position: absolute;
  left: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.nike-subnav__brand img {
  display: block;
  height: 80px;
  width: auto;
  padding-right: 10px;
}
.nike-subnav__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.nike-subnav__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 2.5vw, 36px);
}
.nike-subnav a {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 200ms ease;
}
.nike-subnav a:hover { opacity: 0.6; }
.nike-subnav a.is-current {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 6px;
}
@media (max-width: 900px) {
  .nike-subnav {
    height: auto;
    justify-content: flex-start;
    padding: 16px var(--gutter) 16px calc(var(--gutter) + 80px);
  }
  .nike-subnav__brand img { height: 96px; padding-right: 10px; }
  .nike-subnav__links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px 16px;
  }
  .nike-subnav__row { display: contents; }
  .nike-subnav a {
    white-space: normal;
    font-size: 11px;
    letter-spacing: 0.12em;
  }
}
@media (max-width: 520px) {
  .nike-subnav { padding-left: var(--gutter); }
  .nike-subnav__brand {
    position: static;
    transform: none;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 12px;
  }
  .nike-subnav__brand img { height: 80px; padding-right: 0; }
}

/* =========================================================
   GRÖN SUB-NAV — same structure as the Nike sub-nav, teal bg
   ========================================================= */
.gron-subnav {
  position: relative;
  width: 100%;
  background: #51d2bc;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(20px, 3vh, 28px) var(--gutter) clamp(20px, 3vh, 28px) calc(var(--gutter) + 110px);
  border-bottom: 2px solid #fff;
}
.gron-subnav__brand {
  position: absolute;
  left: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.gron-subnav__brand img {
  display: block;
  height: 64px;
  width: auto;
  max-width: none;
  object-fit: contain;
  padding-right: 10px;
}

/* Hamburger toggle — hidden on desktop, shown on mobile */
.gron-subnav__toggle {
  display: none;
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 5;
}
.gron-subnav__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform .25s ease, opacity .25s ease;
  transform-origin: center;
}
.gron-subnav__toggle.is-active .gron-subnav__toggle-bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.gron-subnav__toggle.is-active .gron-subnav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.gron-subnav__toggle.is-active .gron-subnav__toggle-bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
.gron-subnav__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.gron-subnav__row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: clamp(16px, 2.5vw, 36px);
}
.gron-subnav a {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 200ms ease;
}
.gron-subnav a:hover { opacity: 0.6; }
.gron-subnav a.is-current {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 6px;
}
@media (max-width: 900px) {
  .gron-subnav {
    height: auto;
    justify-content: flex-start;
    padding: 14px var(--gutter);
    min-height: 80px;
  }
  .gron-subnav__brand img {
    height: 48px;
    width: auto;
    max-width: none;
    object-fit: contain;
    padding-right: 0;
  }
  .gron-subnav__toggle { display: flex; }

  /* Slide-down dropdown panel — 2-column grid on mobile */
  .gron-subnav__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0;
    row-gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #51d2bc;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, border-top-width 0s linear .35s;
    border-top: 0 solid rgba(255, 255, 255, 0.3);
    z-index: 50;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
  .gron-subnav__links.is-open {
    max-height: 720px;
    border-top-width: 1px;
    transition: max-height .35s ease, border-top-width 0s linear 0s;
  }

  /* Flatten the row structure so links sit directly in the 2-col grid */
  .gron-subnav__row { display: contents; }

  .gron-subnav a {
    display: block;
    width: 100%;
    padding: 16px var(--gutter);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: left;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    white-space: normal;
    transition: background-color .2s ease;
  }
  /* Vertical divider between the two columns */
  .gron-subnav a:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
  }
  .gron-subnav a:hover,
  .gron-subnav a:focus-visible {
    background: rgba(255, 255, 255, 0.12);
  }
  .gron-subnav a.is-current {
    background: rgba(255, 255, 255, 0.18);
  }
  .gron-subnav a.is-current::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
    transform: translateY(-2px);
  }
}
@media (max-width: 520px) {
  .gron-subnav__brand img { height: 40px; padding-right: 0; }
  .gron-subnav { min-height: 68px; padding: 12px var(--gutter); }
  .gron-subnav a {
    padding: 14px var(--gutter);
    font-size: 12px;
    letter-spacing: 0.14em;
  }
}

/* VIDEO HERO — autoplay/loop/muted with overlay text */
.video-hero {
  position: relative;
  background: #000;
  width: 100%;
  overflow: hidden;
}
.video-hero__video {
  display: block;
  width: 100%;
  height: auto;
}
.video-hero__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: var(--gutter);
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.45) 100%);
  color: #fff;
  font-family: var(--f-sans);
  pointer-events: none;
}
.video-hero__eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.video-hero__title {
  margin: 0 0 20px;
  font-family: var(--f-sans);
  font-size: clamp(64px, 12vw, 200px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.video-hero__deck {
  margin: 0;
  max-width: 600px;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
}
/* TOP NAV right-side link */
.bar { grid-template-columns: 1fr auto 1fr; }
.bar__nav-right {
  justify-self: end;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.bar__nav-right a { color: var(--ink-soft); transition: color 200ms; }
.bar__nav-right a:hover { color: var(--ink); }

/* INTRO inline link */
.bio-link-inline {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  text-decoration: none;
}
.bio-link-inline:hover { opacity: 0.6; }

/* ASTRONOMA video band */
.astro-band {
  position: relative;
  background: #000;
  color: #fff;
  padding: clamp(60px, 10vh, 120px) var(--gutter);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  min-height: 60vh;
}
.astro-band__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.7;
  display: block;
}
.astro-band__copy {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 700px;
}
.astro-band__eyebrow {
  margin: 0 0 16px;
  font-family: var(--f-sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.astro-band__title {
  margin: 0 0 18px;
  font-family: var(--f-sans);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1; color: #fff;
}
.astro-band__body {
  margin: 0; max-width: 600px; margin: 0 auto;
  font-family: var(--f-sans);
  font-size: clamp(16px, 1.3vw, 19px); font-weight: 300;
  letter-spacing: 0.005em; line-height: 1.5; color: rgba(255,255,255,0.85);
}

/* HERO */
.home-hero {
  background: #000;
  color: #fff;
  padding: clamp(120px, 22vh, 240px) var(--gutter);
  text-align: center;
  position: relative;
  font-family: var(--f-sans);
}
.home-hero__eyebrow {
  margin: 0 0 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.home-hero__title {
  margin: 0 0 28px;
  font-family: var(--f-sans);
  font-size: clamp(72px, 12vw, 180px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #fff;
}
.home-hero__deck {
  margin: 0 auto;
  max-width: 720px;
  font-family: var(--f-sans);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 300;
  letter-spacing: 0.005em;
  line-height: 1.45;
  color: rgba(255,255,255,0.78);
}
.home-hero__mark {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  opacity: 0.5;
}
.home-hero__mark img { width: 100%; display: block; }

/* FEATURED PROJECTS QUICK NAV — colored logo tiles directly under the hero */
.home-quick-nav {
  background: #fff;
  padding: clamp(80px, 12vh, 140px) var(--gutter) clamp(60px, 10vh, 110px);
  text-align: center;
}
.home-quick-nav__title {
  margin: 0 auto clamp(36px, 5vh, 60px);
  font-family: var(--f-sans);
  font-size: clamp(22px, 3.3vw, 43px);
  font-weight: 200;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink);
}
.home-quick-nav__grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1280px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.home-quick-nav__grid li { margin: 0; }
.home-quick-nav__tile {
  display: block;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: #000;
}
/* The tile images already include the colored backgrounds + logos baked in,
   so render them full-bleed inside the square at 100% color (no overlay). */
.home-quick-nav__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 420ms var(--ease);
}
.home-quick-nav__tile:hover img { transform: scale(1.3); }

@media (max-width: 760px) {
  .home-quick-nav__grid { grid-template-columns: repeat(2, 1fr); }
}

.home-quick-nav__cta {
  margin: clamp(28px, 4vh, 44px) auto 0;
  text-align: center;
}
.home-quick-nav__cta a {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  transition: opacity 180ms var(--ease);
}
.home-quick-nav__cta a:hover { opacity: 0.55; }

/* INTRO / HELLO — dark "Allow me to introduce myself" module
   Left: black panel with big "Hello.", lede, text links
   Right: full-height B&W portrait scaled to fit vertically */
.home-intro {
  background: #000;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: none;
  max-height: 750px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid #808080;
}
.home-intro__copy {
  padding: clamp(60px, 10vh, 120px) clamp(32px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 620px;
  order: 2;
}
.home-intro__portrait { order: 1; }
/* Hello + body match the .feature__title and .feature__body typography */
.home-intro__hello {
  margin: 0 0 28px;
  font-family: var(--f-sans);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #fff;
}
.home-intro__body {
  margin: 0 0 1.4em;
  max-width: 560px;
  font-family: var(--f-sans);
  font-size: clamp(19px, 1.3vw, 21px);
  font-weight: 400;
  letter-spacing: 0.012em;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
}
.home-intro__body:last-of-type { margin-bottom: 36px; }
.home-intro__textlink {
  margin: 0 0 14px;
  font-family: var(--f-sans);
}
.home-intro__textlink:last-child { margin-bottom: 0; }
.home-intro__textlink a {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid #fff;
  transition: opacity 180ms var(--ease);
}
.home-intro__textlink a:hover { opacity: 0.55; }

.home-intro__portrait {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.home-intro__portrait img {
  width: auto;
  height: 100%;
  max-width: none;
  max-height: 100%;
  object-fit: contain;
  display: block;
  filter: grayscale(100%) contrast(1.05);
}

@media (max-width: 900px) {
  .home-intro {
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
  }
  .home-intro__copy {
    order: 1;
    align-items: flex-start;
    padding: clamp(48px, 8vh, 80px) var(--gutter);
    max-width: none;
  }
  .home-intro__portrait {
    order: 2;
    height: auto;
    display: block;
    overflow: visible;
  }
  .home-intro__portrait img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    object-fit: contain;
  }
}

/* SECTION HEADER */
.home-section-header {
  background: #fff;
  padding: clamp(80px, 14vh, 160px) var(--gutter) clamp(60px, 10vh, 120px);
  text-align: center;
  border-top: 1px solid var(--line);
}
.home-section-header--alt {
  background: var(--bg-soft);
  border-top: none;
}
.home-section-header__eyebrow {
  margin: 0 0 16px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}
.home-section-header__title {
  margin: 0;
  font-family: var(--f-sans);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  max-width: 900px;
  margin: 0 auto;
}

/* FEATURE PANEL — stacked layout: single image on top, type underneath
   (used by Apple, Coca-Cola, Nike, Grön, Fleets & Fortunes, Majin Planet) */
.feature {
  background: #fff;
  padding: clamp(60px, 9vh, 110px) 0 150px;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vh, 56px);
  max-width: 1400px;
  margin: 0 auto;
  text-align: left;
}
.feature .feature__cover { order: 1; }
.feature .feature__copy {
  order: 2;
  max-width: 900px;
  margin: 0 auto;
}
/* Grön — full-bleed teal module with edge-to-edge video and white type */
.feature--gron {
  padding-top: 0;
  padding-bottom: 75px;
  padding-left: 0;
  padding-right: 0;
  background: #4fd3bd;
  max-width: none;
  box-shadow: -100vmax 0 0 #4fd3bd, 100vmax 0 0 #4fd3bd;
  clip-path: inset(0 -100vmax);
  color: #fff;
}
.feature--gron .feature__cover {
  padding: 70px var(--gutter) 0;
  background: #4fd3bd;
}
.feature--gron .feature__video {
  max-width: none;
  border-radius: 16px;
  background: #000;
  border: 3px solid #fff;
}
.feature--gron .feature__copy {
  padding-left: 0;
  padding-right: 0;
}
.feature--gron .feature__eyebrow,
.feature--gron .feature__title,
.feature--gron .feature__body { color: #fff; }
.feature--gron .feature__cta {
  color: #fff;
  border-bottom-color: #fff;
}
.feature--gron .feature__more-line { color: rgba(255,255,255,0.85); }
.feature--gron .feature__more-line a { color: #fff; }
/* GRÖN NAV BAND — teal full-bleed module sitting between Grön copy
   and the Astronoma intro video */
.gron-nav-band {
  background: #4fd3bd;
  padding: clamp(20px, 3vh, 35px) 0 150px;
  margin: 0;
}
/* NIKE FOOTBALL NAV BAND — white full-bleed module sitting between the
   Nike Global Football section and Grön */
.nike-nav-band {
  background: #fff;
  padding: clamp(20px, 3vh, 35px) 0 150px;
  margin: 0;
}

/* Shared thumbnail nav grid — 5 columns, client name hidden, bold cat */
.feature__sub-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0 var(--gutter);
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(21px, 4vw, 45px) clamp(7px, 2vw, 19px);
  width: 100%;
}
.feature__sub-grid .project-card__title { display: none; }
.feature__sub-grid .project-card__cat { font-weight: 700; }

/* Grön band: white type on teal, white-bordered thumbs */
.gron-nav-band .feature__sub-grid .project-card__thumb {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid #fff;
}
.gron-nav-band .feature__sub-grid .project-card__cat {
  color: #fff;
}

/* Nike band: white type on orange, no border on thumbs */
.nike-nav-band .feature__sub-grid .project-card__thumb {
  background: rgba(255, 255, 255, 0.18);
  border: 0;
}
.nike-nav-band .feature__sub-grid .project-card__cat {
  color: #fff;
}
.nike-nav-band .feature__sub-grid .project-card__title {
  color: #fff;
}

@media (max-width: 760px) {
  .feature__sub-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 17px 7px;
  }
}

/* DESIGN INTRO — short copy block that introduces the project gallery */
.home-design-intro {
  background: #fff;
  padding: clamp(80px, 12vh, 140px) var(--gutter) clamp(60px, 10vh, 110px);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.home-design-intro__eyebrow {
  margin: 0 auto 40px;
  font-family: var(--f-sans);
  font-size: clamp(22px, 3.3vw, 43px);
  font-weight: 200;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink);
}
.home-design-intro__body {
  margin: 0 auto 1.2em;
  max-width: 720px;
  font-family: var(--f-sans);
  font-size: clamp(19px, 1.3vw, 22px);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.012em;
  color: var(--ink-soft);
}
.home-design-intro__body:last-child { margin-bottom: 0; }

/* Nike — full-bleed white module with the wide swoosh edge-to-edge */
.feature--nike {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.feature--nike .feature__single {
  max-width: none;
  border-radius: 0;
  aspect-ratio: 2200 / 1125;
  background: #fff;
}
.feature--nike .feature__copy {
  padding-left: 0;
  padding-right: 0;
}

/* Nike Global Football — no padding above the video; it sits flush to the
   section that precedes it */
.feature--nike-gf { padding-top: 0; }
/* Astronoma — full-bleed black module with inset video and white type */
.feature--astro {
  padding-top: 70px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  background: #000;
  color: #fff;
  max-width: none;
  box-shadow: -100vmax 0 0 #000, 100vmax 0 0 #000;
  clip-path: inset(0 -100vmax);
}
.feature--astro .feature__video {
  max-width: none;
  border-radius: 0;
  background: #000;
  aspect-ratio: 1274 / 540;
}
@media (max-width: 760px) {
  .feature--astro {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}
.feature--astro .feature__video video {
  object-fit: contain;
}
.feature--astro .feature__copy {
  padding-left: 0;
  padding-right: 0;
}
.feature--astro .feature__eyebrow { color: rgba(255,255,255,0.7); }
.feature--astro .feature__title   { color: #fff; }
.feature--astro .feature__body    { color: rgba(255,255,255,0.78); }
.feature--astro .feature__cta {
  color: #fff;
  border-bottom-color: #fff;
}

/* Majin Planet — full-bleed black module with edge-to-edge image and white type */
.feature--majin {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  background: #000;
  color: #fff;
  max-width: none;
  box-shadow: -100vmax 0 0 #000, 100vmax 0 0 #000;
  clip-path: inset(0 -100vmax);
}
.feature--majin .feature__cover {
  padding: 50px var(--gutter) 0;
}
.feature--majin .feature__single {
  max-width: 1200px;
  border-radius: 16px;
  border: 3px solid #fff;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.feature--majin .feature__single img {
  object-fit: cover;
}
.feature--majin .feature__copy {
  padding-left: 0;
  padding-right: 0;
}
.feature--majin .feature__eyebrow { color: rgba(255,255,255,0.7); }
.feature--majin .feature__title   { color: #fff; }
.feature--majin .feature__body    { color: rgba(255,255,255,0.78); }
.feature--majin .feature__cta {
  color: #fff;
  border-bottom-color: #fff;
}
/* Fleets & Fortunes — same flush-top treatment */
/* Fleets & Fortunes — full-bleed map background, 75px above video, white type */
.feature--fleets {
  padding-top: 75px;
  padding-left: 0;
  padding-right: 0;
  max-width: none;
  background: url('images/MAP_BG.jpg') center/cover no-repeat;
}
.feature--fleets .feature__cover {
  padding: 0 var(--gutter);
}
.feature--fleets .feature__video {
  border-radius: 16px;
  border: 3px solid #c8102e;
}
.feature--fleets .feature__copy {
  padding-left: 0;
  padding-right: 0;
}
.feature--fleets .feature__eyebrow { color: rgba(255,255,255,0.78); }
.feature--fleets .feature__title   { color: #fff; }
.feature--fleets .feature__body    { color: rgba(255,255,255,0.88); }
.feature--fleets .feature__cta {
  color: #fff;
  border-bottom-color: #fff;
}

/* Coca-Cola — full-bleed black module with edge-to-edge image and white type */
.feature--coke {
  background: #000;
  color: #fff;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  box-shadow: -100vmax 0 0 #000, 100vmax 0 0 #000;
  clip-path: inset(0 -100vmax);
}
.feature--coke .feature__single {
  max-width: none;
  border-radius: 0;
  aspect-ratio: 16 / 9;
  background: #000;
}
.feature--coke .feature__copy {
  padding-left: 0;
  padding-right: 0;
}
.feature--coke .feature__eyebrow { color: rgba(255,255,255,0.7); }
.feature--coke .feature__title   { color: #e61a27; }
.feature--coke .feature__body    { color: rgba(255,255,255,0.78); }
.feature--coke .feature__cta {
  color: #e61a27;
  border-bottom-color: #e61a27;
}

/* Single hero image — capped at 1200px wide, 16:10 aspect, centered */
.feature__single {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-soft);
}
.feature__single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slideshow — stacks all slides absolutely inside the .feature__single
   container and crossfades between them via .is-active */
.feature__slideshow { position: relative; }
.feature__slideshow .feature__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms var(--ease);
  pointer-events: none;
}
.feature__slideshow .feature__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Video container used in place of an image (Fleets & Fortunes) */
.feature__video {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}
.feature__video video,
.feature__video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}

/* Background variant for features that sit inside the soft-gray Other
   Interests zone — keeps the standard 1400px content rhythm but paints a
   full-bleed soft background using the box-shadow trick */
.feature--on-soft {
  background: var(--bg-soft);
  box-shadow: -100vmax 0 0 var(--bg-soft), 100vmax 0 0 var(--bg-soft);
  clip-path: inset(0 -100vmax);
}
.feature--on-soft .feature__grid figure { background: rgba(0,0,0,0.05); }

.feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feature__grid--pair {
  grid-template-columns: 1fr;
  gap: 16px;
}
.feature__grid figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  border-radius: 8px;
}
.feature__grid--pair figure {
  aspect-ratio: 16 / 10;
}
.feature__grid img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s var(--ease);
}
.feature__grid:hover img { transform: scale(1.02); }

.feature__eyebrow {
  margin: 0 0 16px;
  max-width: 900px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}
.feature__title {
  margin: 0 0 28px;
  max-width: 900px;
  font-family: var(--f-sans);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
.feature__body {
  margin: 0 0 1.4em;
  max-width: 900px;
  font-family: var(--f-sans);
  font-size: clamp(19px, 1.3vw, 21px);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.012em;
  color: var(--ink-soft);
}
.feature__cta {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  transition: opacity 200ms var(--ease);
}
.feature__cta:hover { opacity: 0.55; }
.feature__more-line {
  margin: 24px 0 0;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--mute);
  line-height: 1.7;
}
.feature__more-line a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr !important; }
  .feature .feature__cover, .feature .feature__copy { order: unset !important; }
}

/* Mobile: gutter the copy blocks 24px on each side, including the
   feature variants (gron/nike/majin/etc.) that strip padding on desktop */
@media (max-width: 760px) {
  .feature .feature__copy,
  .feature--gron .feature__copy,
  .feature--nike .feature__copy,
  .feature--astro .feature__copy,
  .feature--majin .feature__copy,
  .feature--fleets .feature__copy,
  .feature--coke .feature__copy {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* PRESS LIST */
.home-press {
  background: var(--bg-soft);
  padding: clamp(60px, 10vh, 120px) var(--gutter);
  max-width: 1100px;
  margin: 0 auto clamp(40px, 6vh, 80px);
  border-radius: 12px;
}
.home-press__header { text-align: center; max-width: 900px; margin: 0 auto clamp(40px, 6vh, 60px); }
.home-press__eyebrow {
  margin: 0 0 16px;
  font-family: var(--f-sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute);
}
.home-press__title {
  margin: 0;
  font-family: var(--f-sans);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ink);
}
.home-press__list { list-style: none; padding: 0; margin: 0; max-width: 900px; margin: 0 auto; }
.home-press__list li {
  display: grid; grid-template-columns: 200px 1fr; gap: 32px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.home-press__list li:last-child { border-bottom: none; }
.home-press__pub {
  font-family: var(--f-sans);
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink);
}
.home-press__line {
  font-family: var(--f-sans);
  font-size: clamp(15px, 1.1vw, 17px); font-weight: 300;
  line-height: 1.5; color: var(--ink-soft);
}
@media (max-width: 700px) { .home-press__list li { grid-template-columns: 1fr; gap: 8px; } }

/* GRÖN NAV */
.home-gron-nav {
  background: #4fd3bd;
  padding: clamp(80px, 14vh, 160px) var(--gutter);
  color: #fff;
}
.home-gron-nav__header { text-align: center; max-width: 900px; margin: 0 auto clamp(50px, 8vh, 80px); }
.home-gron-nav__eyebrow {
  margin: 0 0 14px;
  font-family: var(--f-sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: #fff;
}
.home-gron-nav__title {
  margin: 0 0 18px;
  font-family: var(--f-sans);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1;
  color: #fff;
}
.home-gron-nav__deck {
  margin: 0;
  font-family: var(--f-sans);
  font-size: clamp(16px, 1.3vw, 20px); font-weight: 400;
  letter-spacing: 0.005em; color: rgba(255,255,255,0.85);
}
.home-gron-nav__grid {
  list-style: none; padding: 0; margin: 0 auto;
  max-width: 1280px;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(20px, 2.4vw, 36px);
}
.home-gron-nav__grid li a {
  display: block; text-align: center; color: #fff;
  transition: opacity 200ms var(--ease);
}
.home-gron-nav__grid li a:hover { opacity: 0.78; }
.home-gron-nav__grid figure {
  margin: 0 0 12px;
  overflow: hidden; aspect-ratio: 1/1; border-radius: 8px;
  background: rgba(255,255,255,0.18);
}
.home-gron-nav__grid img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-gron-nav__grid span {
  font-family: var(--f-sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  line-height: 1.3; color: #fff;
}
.home-gron-nav__more {
  margin: clamp(40px, 6vh, 60px) auto 0;
  max-width: 900px; text-align: center;
  font-family: var(--f-sans);
  font-size: 13px; line-height: 1.8;
  color: rgba(255,255,255,0.85);
}
.home-gron-nav__more a { color: #fff; text-decoration: underline; text-underline-offset: 3px; margin: 0 2px; }
@media (max-width: 1000px) { .home-gron-nav__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .home-gron-nav__grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   MORE SELECTED PROJECTS (ported from apple-holiday-styles.css)
   ========================================================= */
.more-projects {
  padding: clamp(60px, 10vh, 120px) var(--gutter);
  max-width: none;
  margin: 0;
  background: #FAFAF9;
  font-family: var(--f-sans);
}
.more-projects__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vh, 80px);
}
.more-projects__title {
  margin: 0;
  font-family: var(--f-sans);
  font-size: clamp(22px, 3.3vw, 43px);
  font-weight: 200;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink);
}
.more-projects__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: clamp(21px, 4vw, 45px) clamp(7px, 2vw, 19px);
}
.project-card { margin: 0; }
.project-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 240ms var(--ease);
}
.project-card__link:hover { opacity: 0.92; }
.project-card__thumb {
  margin: 0 0 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #ECECE8;
}
.project-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.project-card__link:hover .project-card__thumb img {
  transform: scale(1.04);
}
.project-card__meta { text-align: left; }
.project-card__title {
  margin: 0 0 3px;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4a4a4a;
  line-height: 1.15;
}
.project-card__cat {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--mute);
  line-height: 1.2;
  letter-spacing: 0.01em;
}
@media (max-width: 1200px) {
  .more-projects__grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 760px) {
  .more-projects__grid { grid-template-columns: repeat(3, 1fr); gap: 17px 7px; }
}

/* INTERESTS GRID */
.home-interests {
  background: var(--bg-soft);
  padding: 0 var(--gutter) clamp(100px, 16vh, 180px);
}
.home-interests__grid {
  list-style: none; padding: 0; margin: 0 auto;
  max-width: 1200px;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 3vw, 48px);
}
.interest-card a {
  display: block; color: inherit; background: #fff;
  border-radius: 14px; overflow: hidden;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.interest-card a:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.interest-card__cover {
  margin: 0; aspect-ratio: 16/10; overflow: hidden;
}
.interest-card__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.interest-card__body { padding: clamp(28px, 4vh, 48px); }
.interest-card__eyebrow {
  margin: 0 0 12px;
  font-family: var(--f-sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute);
}
.interest-card__title {
  margin: 0 0 16px;
  font-family: var(--f-sans);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600; letter-spacing: -0.015em; line-height: 1.15;
  color: var(--ink);
}
.interest-card__text {
  margin: 0 0 16px;
  font-family: var(--f-sans);
  font-size: clamp(15px, 1.1vw, 17px); line-height: 1.6;
  font-weight: 300; letter-spacing: 0.012em; color: var(--ink-soft);
}
.interest-card__cta {
  display: inline-block; margin-top: 8px;
  font-family: var(--f-sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink);
  padding-bottom: 4px; border-bottom: 1px solid var(--ink);
}
@media (max-width: 800px) { .home-interests__grid { grid-template-columns: 1fr; } }
