@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,600;0,14..32,700;1,14..32,300;1,14..32,400&display=swap');

/* ============================================================
   Variables
   ============================================================ */
:root {
  --color-black:      #111111;
  --color-white:      #ffffff;
  --color-bg-light:   #f5f5f3;
  --color-text:       #1a1a1a;
  --color-muted:      #888888;
  --color-border:     rgba(0, 0, 0, 0.1);

  --container-max:    1600px;
  --gutter:           clamp(1.5rem, 5vw, 5rem);

  --font:             'Inter', system-ui, -apple-system, sans-serif;

  --ease-out:         cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.5;
}

img, video { display: block; max-width: 100%; }
ul         { list-style: none; }
a          { color: inherit; text-decoration: none; }

/* ============================================================
   Container utility
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Block grid strips the wrapper element — sections handle their own containment */
.umb-block-grid__layout-item { display: contents; }

/* ============================================================
   Navigation — floating pill
   ============================================================ */
.site-header {
  position: fixed;
  top: 1rem;
  /* inset-inline instead of left+transform so fixed children
     (the mobile overlay) size to the viewport, not the header */
  inset-inline: var(--gutter);
  z-index: 100;
  pointer-events: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  /* max-width + auto margins centre the pill on wide screens */
  max-width: 1480px;
  margin-inline: auto;
  background: rgba(22, 27, 24, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 9999px;
  padding: 0.55rem 0.55rem 0.55rem 1.75rem;
  color: var(--color-white);
  pointer-events: all;
}

/* ---- Logo ---- */
.site-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.site-nav__logo-brand {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
}

.site-nav__logo-rule {
  display: block;
  width: 1px;
  height: 1.1em;
  background: rgba(255, 255, 255, 0.35);
}

.site-nav__logo-sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
}

/* ---- Centre links ---- */
.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 2rem);
  flex: 1;
  justify-content: center;
  padding-inline: 1rem;
}

.site-nav__links a {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  transition: color 0.2s;
}

.site-nav__links a:hover {
  color: var(--color-white);
}

.site-nav__external sup {
  font-size: 0.6em;
  vertical-align: super;
  margin-left: 0.1em;
}

/* ---- Right-side actions ---- */
.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.site-nav__mail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  transition: border-color 0.2s, color 0.2s;
}

.site-nav__mail:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--color-white);
}

.site-nav__back {
  display: inline-flex;
  align-items: center;
  height: 2.75rem;
  padding-inline: 1.25rem;
  border-radius: 9999px;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.site-nav__back:hover {
  background: rgba(255, 255, 255, 0.88);
}

/* ---- Hamburger toggle (hidden on desktop) ---- */
.site-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.site-nav__toggle:hover { border-color: rgba(255, 255, 255, 0.6); }

.site-nav__toggle-icon {
  position: relative;
  width: 16px;
  height: 10px;
}

.site-nav__toggle-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out);
}

.site-nav__toggle-bar:nth-child(1) { top: 0; }
.site-nav__toggle-bar:nth-child(2) { bottom: 0; }

.site-header.is-open .site-nav__toggle-bar:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.site-header.is-open .site-nav__toggle-bar:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

/* ---- Mobile overlay (hidden on desktop) ---- */
.site-nav__mobile { display: none; }

@media (max-width: 1023px) {
  .site-nav__links        { display: none; }
  .site-nav__back         { display: none; }
  .site-nav__toggle       { display: flex; }
  .site-nav__actions      { margin-left: auto; }

  /* Overlay panel — scrollable so tall content is never clipped */
  .site-nav__mobile {
    display: block;          /* overrides the global display:none */
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(16, 21, 18, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out);
  }

  .site-header.is-open .site-nav__mobile {
    opacity: 1;
    pointer-events: all;
  }

  /* Watermark: fixed so it stays in viewport regardless of scroll */
  .site-nav__mobile::before {
    content: 'HOUE';
    position: fixed;
    bottom: -0.08em;
    right: -0.04em;
    font-size: 52vw;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    line-height: 1;
    user-select: none;
  }

  /* Inner: min-height 100% so it fills viewport when content is short;
     taller when content needs more room (overlay then scrolls) */
  .site-nav__mobile-inner {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 5.5rem var(--gutter) 3rem;
  }

  /* Close button — top-right corner of the overlay, aligned with the pill */
  .site-nav__close {
    position: absolute;
    top: var(--gutter);
    right: var(--gutter);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }

  .site-nav__close:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--color-white);
  }

  /* flex:1 pushes footer to the bottom; justify-content puts items there too */
  .site-nav__mobile-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 0.5rem;
  }

  /* Base: invisible. transition-delay set here so the browser reads it
     from the pre-open state, which guarantees the stagger fires on open. */
  .site-nav__mobile-links li {
    opacity: 0;
    transform: translateY(1.75rem);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  }

  .site-nav__mobile-links li:nth-child(1) { transition-delay: 0.08s; }
  .site-nav__mobile-links li:nth-child(2) { transition-delay: 0.15s; }
  .site-nav__mobile-links li:nth-child(3) { transition-delay: 0.22s; }
  .site-nav__mobile-links li:nth-child(4) { transition-delay: 0.29s; }
  .site-nav__mobile-links li:nth-child(5) { transition-delay: 0.36s; }
  .site-nav__mobile-links li:nth-child(6) { transition-delay: 0.43s; }

  .site-header.is-open .site-nav__mobile-links li {
    opacity: 1;
    transform: translateY(0);
  }

  /* Link row */
  .site-nav__mobile-links a {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-block: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s;
  }

  .site-nav__mobile-links li:last-child a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav__mobile-links a:hover { color: var(--color-white); }

  .site-nav__mobile-num {
    font-size: 0.625rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.28);
    min-width: 1.5rem;
    flex-shrink: 0;
    align-self: flex-start;
    padding-top: 0.6em;
    transition: color 0.2s;
  }

  .site-nav__mobile-links a:hover .site-nav__mobile-num {
    color: rgba(255, 255, 255, 0.55);
  }

  .site-nav__mobile-label {
    flex: 1;
    font-size: clamp(1.75rem, 7.5vw, 2.75rem);
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.1;
    transition: translate 0.3s var(--ease-out);
  }

  .site-nav__mobile-links a:hover .site-nav__mobile-label {
    translate: 0.3rem 0;
  }

  .site-nav__mobile-arrow {
    font-size: 1.1rem;
    flex-shrink: 0;
    opacity: 0;
    translate: -0.5rem 0;
    transition: opacity 0.2s, translate 0.3s var(--ease-out);
  }

  .site-nav__mobile-links a:hover .site-nav__mobile-arrow {
    opacity: 1;
    translate: 0 0;
  }

  /* Footer */
  .site-nav__mobile-footer {
    flex-shrink: 0;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(0.75rem);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
    transition-delay: 0.55s;
  }

  .site-header.is-open .site-nav__mobile-footer {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav__mobile-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 2.5rem;
    padding-inline: 1.25rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }

  .site-nav__mobile-cta--outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
  }

  .site-nav__mobile-cta--outline:hover { border-color: rgba(255, 255, 255, 0.65); }

  .site-nav__mobile-cta--white {
    background: var(--color-white);
    color: var(--color-black);
  }

  .site-nav__mobile-cta--white:hover { background: rgba(255, 255, 255, 0.88); }
}

/* ============================================================
   Hero block
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

/* stacked slides — opacity crossfade driven by JS */
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}

.hero__slide--active { opacity: 1; }

/* subtle gradient so content text stays readable */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 var(--gutter) 5rem;
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
}

.hero__heading {
  font-size: clamp(0.875rem, 1.25vw, 1.125rem);
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 1.75rem;
  max-width: 40ch;
  line-height: 1.6;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.825rem 1.825rem;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 2rem;
  color: var(--color-white);
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  backdrop-filter: blur(4px);
  transition: background 0.2s, border-color 0.2s;
}

.hero__btn:hover {
  background: rgba(255, 255, 255, 1);
  border-color: var(--color-white);
  color: var(--color-black);
}

.hero__indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
  display: flex;
  gap: 0.5rem;
}

.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero__dot--active {
  background: var(--color-white);
  transform: scale(1.3);
}

/* ============================================================
   Product collection block
   ============================================================ */
.product-collection {
  padding-block: 5rem;
  padding-inline: var(--gutter);
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
}

.product-collection__header {
  text-align: center;
  margin-bottom: 3rem;
}

.product-collection__label {
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.product-collection__heading {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

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

.product-collection__grid > li { position: relative; }

.product-collection__grid > li:not(:nth-child(3n))::after {
  content: '';
  position: absolute;
  right: -2rem; /* half the 2.5rem column gap */
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-border);
}

.product-card__link { display: block; }

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 1rem;
}

.product-card__img-product {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.4s ease;
}

.product-card__section-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.product-card__img-section {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 3s var(--ease-out);
}

.product-card__image-wrap:hover .product-card__img-product { opacity: 0; }
.product-card__image-wrap:hover .product-card__section-wrap { opacity: 1; }
.product-card__image-wrap:hover .product-card__img-section {
  transform: scale(1.08);
}

.product-card__img-next {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.product-card__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.product-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.product-card__name {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
}

.product-card__intro {
  font-size: 1rem;
  color: var(--color-text);
}

.product-card__colors {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.375rem;
  flex-shrink: 0;
}

.product-card__colors-label {
  font-size: 1rem;
  color: var(--color-muted);
  font-weight:300;
}

.product-card__color-dots {
  display: flex;
  gap: 0.375rem;
}

.product-card__color-dot {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
  flex-shrink: 0;
  transition: box-shadow 0.15s ease;
}

.product-card__color-dot.is-active {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px currentColor;
  outline: none;
}

/* ============================================================
   Full-width banner block
   ============================================================ */
.banner {
  position: relative;
  height: clamp(480px, 65vh, 860px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.banner__bg {
  position: absolute;
  inset: 0;
}

.banner__bg img,
.banner__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* same subtle gradient as hero */
.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.banner__content {
  position: relative;
  z-index: 1;
  padding: 0 var(--gutter) var(--content-offset, 4rem);
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
}

.banner__heading {
  display: flex;
  flex-direction: column;
}

.banner__line {
  display: block;
  font-size: clamp(2.5rem, 5.5vw, 5.25rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--color-white);
  letter-spacing: -0.025em;
}

.banner__line--2,
.banner__line--right {
  align-self: flex-end;
  text-align: right;
}

.banner__line--left { align-self: flex-start; }

@keyframes banner-word-in {
  from {
    opacity: 0;
    transform: translateY(0.5em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner__segment {
  display: inline-block;
  opacity: 0;
}

.banner.is-visible .banner__segment {
  animation: banner-word-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.3s + var(--i) * 0.5s);
}

/* ============================================================
   Philosophy block
   ============================================================ */
.philosophy {
  display: flex;
  flex-direction: column;
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
  padding: 5rem 0 3rem 0;
}

.philosophy__top {
  display: grid;
  grid-template-columns: 55% 1fr;
  align-items: start;
  min-height: 520px;
}

.philosophy__text {
  padding-block: 5rem;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.25rem;
}

.philosophy__label {
  font-size: 1.5rem;
  color: var(--color-text);
}

.philosophy__heading {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  max-width: 20ch;
}

.philosophy__link {
  position: relative;
  font-size: 1.5rem;
  color: var(--color-text);
  text-decoration: none;
  align-self: flex-start;
}

.philosophy__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease-out);
}

.philosophy__link:hover::after {
  width: 100%;
}

.philosophy__link-arrow {
  position: absolute;
  top: 0.3rem;
  right: -0.6rem;
  transform: scale(0.8);
  transition: transform 0.4s var(--ease-out);
}

.philosophy__link:hover .philosophy__link-arrow {
  transform: scale(0.8) translate(3px, -3px);
}

.philosophy__image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 5rem 4rem 2rem auto;
  margin-right: calc(4rem + 16px); /* account for the image's overflow */
  aspect-ratio: 46 / 54;
  max-width: 390px;
}

.philosophy__img-base {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.philosophy__img-next {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.philosophy__sub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-inline: var(--gutter);
  padding-block: 3rem 4rem;
  gap: 0 4rem;
}

.philosophy__sub-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  color: var(--color-muted);
  transition: color 0.35s ease;
  cursor: default;
}

.philosophy__sub-item:hover { color: var(--color-text); }

.philosophy__sub-item:not(:first-child) {
  border-left: 1px solid var(--color-border);
  padding-left: 2rem;
}

.philosophy__sub-num {
  flex-shrink: 0;
  font-size: 0.6875rem;
  transition: transform 0.8s var(--ease-out);
}

.philosophy__sub-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.philosophy__sub-title {
  width: 50%;
  padding-top: 0.8rem;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  transition: transform 0.8s var(--ease-out);
}

.philosophy__sub-item:hover .philosophy__sub-num,
.philosophy__sub-item:hover .philosophy__sub-title {
  transform: translateY(-2rem);
}

.philosophy__sub-body {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.1;
}

/* ============================================================
   Feature columns block
   ============================================================ */
.feature-columns {
  padding-block: 3.5rem;
  padding-inline: var(--gutter);
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
}

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

.feature-column__title {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-muted);
  margin-bottom: 0.625rem;
  letter-spacing: 0.02em;
}

.feature-column__body {
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-muted);
}

/* ============================================================
   Closer look block
   ============================================================ */
.closer-look {
  padding-block: 3rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.closer-look__heading {
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
  padding-inline: var(--gutter);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 3rem;
}


.closer-look__track {
  display: flex;
  gap: 1.5rem;
  padding-left: max(var(--gutter), calc((100vw - var(--container-max)) / 2 + var(--gutter)));
  transition: transform 0.55s var(--ease-out);
  will-change: transform;
}

.closer-look__tile {
  flex: 0 0 640px;
}

.closer-look__nav {
  display: flex;
  justify-content: flex-end;
  padding-right: var(--gutter);
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.closer-look__prev,
.closer-look__next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: none;
  cursor: pointer;
  color: var(--color-text);
  transition: opacity 0.2s;
}

.closer-look__prev:disabled,
.closer-look__next:disabled {
  opacity: 0.25;
  cursor: default;
}

.closer-look__image-wrap {
  overflow: hidden;
  border-radius: 10px;
  background: var(--color-bg-light);
}

.closer-look__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.closer-look__tile:hover .closer-look__image-wrap img {
  transform: scale(1.03);
}

.closer-look__caption { padding: 1.5rem 0; }

.closer-look__caption-title {
  
  font-size: 1.5rem;
  font-weight: 600;
  
}

.closer-look__caption-body {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.2;
}

/* ============================================================
   Team block
   ============================================================ */
.team-header {
  padding-block: 5rem 7rem;
  padding-inline: var(--gutter);
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
  text-align: center;
}

.team-header__label {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.team-header__heading {
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.team-header__sub {
  font-size: clamp(0.9375rem, 1.5vw, 1.5rem);
  color: var(--color-text);
  max-width: 50ch;
  margin-inline: auto;
  line-height: 1.1;
}

.team {
  position: relative;
  min-height: 90vh;
  background: var(--color-bg-light);
  overflow: hidden;
}

.team__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
}

.team__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.team__slide.is-leaving {
  opacity: 0;
  pointer-events: none;
}

.team__inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, var(--container-max));
  pointer-events: none;
}

.team__inner > * {
  pointer-events: auto;
}

.team__photo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(calc(-50% + 20%));
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}

.team__slide.is-active .team__photo {
  transform: translateX(-50%);
}

.team__slide.is-leaving .team__photo {
  transform: translateX(calc(-50% - 20%));
}

.team__quote-wrap {
  position: absolute;
  top: var(--gutter);
  left: var(--gutter);

}

.team__quote {
  font-size: clamp(1.125rem, 2vw, 2rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.35;
    max-width: 20ch;
  color: var(--color-text);
}

.team__meta {
  position: absolute;
  top: var(--gutter);
  right: var(--gutter);
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.team__name {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  word-spacing: 100vw;
}

.team__role {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 400;
}

.team__controls {
  position: absolute;
  bottom: var(--gutter);
  left: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.team__nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.team__prev,
.team__next {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--color-text);
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

.team__prev:hover,
.team__next:hover { opacity: 0.5; }

.team__counter {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.team__avatars {
  display: flex;
  gap: 0.5rem;
  position: relative;
}

.team__avatars-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(3.25rem + 10px);
  height: calc(3.25rem + 10px);
  border-radius: 50%;
  border: 1px solid var(--color-text);
  pointer-events: none;
  transition: transform 0.45s var(--ease-out);
  will-change: transform;
}

.team__avatar-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  overflow: hidden;
  width: 3.25rem;
  height: 3.25rem;
  opacity: 0.3;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.team__avatar-btn.is-active { opacity: 1; }
/* active indicator is the sliding ring — no extra style needed here */

@media (max-width: 48em) {
  .team__photo {
    top: 9rem;
    height: calc(100% - 9rem);
  }
}

.team__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team__more {
  position: absolute;
  bottom: var(--gutter);
  right: var(--gutter);
  font-size: 0.9375rem;
  color: var(--color-text);
}

/* ============================================================
   Context images block
   ============================================================ */
.context-images {
  padding-block: 5rem;
  padding-inline: var(--gutter);
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
}

.context-images__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.context-images__heading {
  font-size: clamp(1.125rem, 2vw, 1.625rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.context-images__subheading {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--color-muted);
}

.context-images__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
}

.context-images__item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: var(--color-bg-light);
}

.context-images__item img,
.context-images__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.context-images__item:hover img,
.context-images__item:hover video {
  transform: scale(1.03);
}

.context-images__play-icon {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  width: 1.75rem;
  height: 1.75rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  pointer-events: none;
}

.context-images__yt-thumb {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
}

.context-images__yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.context-images__item:hover .context-images__yt-thumb img {
  transform: scale(1.03);
}

.context-images__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 0.875rem 0.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}

.context-images__item:hover .context-images__caption {
  opacity: 1;
}

/* ============================================================
   Certifications block
   ============================================================ */
.certifications {
  padding-block: 3.5rem;
  padding-inline: var(--gutter);
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
  border-block-start: 1px solid var(--color-border);
}

.certifications__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.certifications__logo {
  height: 2.75rem;
  width: auto;
  object-fit: contain;
  opacity: 0.65;
  transition: opacity 0.2s;
}

.certifications__logo:hover { opacity: 1; }

.certifications__item--bcorp .certifications__logo { opacity: 1; }

.certifications__label {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ============================================================
   Footer  (placeholder)
   ============================================================ */
.site-footer {
  padding: 2rem var(--gutter);
  border-block-start: 1px solid var(--color-border);
  text-align: center;
}

.site-footer__copy {
  font-size: 0.75rem;
  color: var(--color-muted);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .product-collection__grid  { grid-template-columns: repeat(2, 1fr); }
  .product-collection__grid > li::after { display: none; }
  .product-collection__grid > li:not(:nth-child(2n))::after { display: block; right: -1.25rem; }

  .philosophy__top           { grid-template-columns: 1fr; }
  .philosophy__image         { aspect-ratio: 46 / 54; margin: 0; border-radius: 0; }
  .philosophy__heading       { max-width: none; }
  .philosophy__sub           { grid-template-columns: 1fr; gap: 0; }
  .philosophy__sub-item:not(:first-child) { border-left: none; border-top: 1px solid var(--color-border); padding-left: 0; padding-top: 2rem; margin-top: 2rem; }

.context-images__grid      { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
}

@media (max-width: 640px) {
  .product-collection__grid  { grid-template-columns: 1fr; }
  .product-collection__grid > li::after { display: none; }
  .closer-look__tile         { flex: 0 0 calc(100vw - var(--gutter) * 2); }
  .feature-columns__list     { grid-template-columns: 1fr; }
  .context-images__grid      { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 40vw; }
}
