/* ==========================================================================
   Eco World -design system
   ========================================================================== */

:root {
  /* Brand */
  --navy: #031f43;
  --navy-deep: #021530;
  --navy-mid: #0a2c56;
  --navy-hover: #0e3a6d;

  /* Neutrals */
  --paper: #ffffff;
  --sand: #f4f5f7;
  --sand-deep: #eaecef;
  --line: #dfe3e8;
  --line-soft: #ecEEF1;
  --text: #4b5769;
  --text-strong: #0d1c31;
  --muted: #8a94a3;

  /* On dark */
  --on-navy: rgba(255, 255, 255, 0.74);
  --on-navy-muted: rgba(255, 255, 255, 0.52);
  --rule-dark: rgba(255, 255, 255, 0.16);

  /* Type */
  --font-display: "Archivo", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1280px;
  --container-wide: 1560px;
  --gutter: clamp(20px, 4.5vw, 56px);
  --header-h: 86px;
  --section-y: clamp(72px, 8.5vw, 140px);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (max-width: 900px) {
  :root {
    --header-h: 66px;
  }
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

@media (min-width: 1024px) {
  body {
    font-size: 1.0625rem;
  }
}

body.is-locked {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
}

p,
figure,
dl,
dd {
  margin: 0;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

::selection {
  background: var(--navy);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

.dark :focus-visible,
.site-header :focus-visible,
.site-footer :focus-visible {
  outline-color: #fff;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 200;
  padding: 12px 18px;
  background: #fff;
  color: var(--navy);
  border-radius: 4px;
  font-weight: 500;
}

.skip-link:focus {
  top: 16px;
}

/* --------------------------------------------------------------------------
   Typography scale
   -------------------------------------------------------------------------- */

.display {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.h1 {
  font-size: clamp(2.25rem, 4.8vw, 3.9rem);
  line-height: 1.05;
  letter-spacing: -0.032em;
}

.h2 {
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.028em;
}

.h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -0.018em;
}

.h4 {
  font-size: 1.0625rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.lead {
  font-size: clamp(1.0625rem, 1.35vw, 1.25rem);
  line-height: 1.62;
  color: var(--text);
  text-align: justify;
  text-align-last: left;
}

.body-lg {
  font-size: 1.0625rem;
  line-height: 1.74;
  text-align: justify;
  text-align-last: left;
}

.small {
  font-size: 0.9375rem;
  line-height: 1.65;
}

.label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 14px;
}

.label::after {
  content: "";
  flex: 0 0 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.label--plain::after {
  display: none;
}

.dark .label,
.hero .label {
  color: rgba(255, 255, 255, 0.62);
}

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--wide {
  max-width: var(--container-wide);
}

.container--narrow {
  max-width: 940px;
}

.section {
  padding-block: var(--section-y);
}

.section--tight {
  padding-block: clamp(56px, 6vw, 100px);
}

.section--flush-top {
  padding-top: 0;
}

.dark {
  background: var(--navy);
  color: var(--on-navy);
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark .display {
  color: #fff;
}

.dark .lead,
.dark .body-lg {
  color: var(--on-navy);
}

.section--sand {
  background: var(--sand);
}

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

.dark .rule {
  background: var(--rule-dark);
}

/* Editorial section header: heading left, supporting text right */
.sec-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

@media (min-width: 900px) {
  .sec-head {
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    gap: clamp(40px, 6vw, 110px);
    align-items: end;
  }
}

.sec-head__title > .label {
  margin-bottom: clamp(20px, 2.4vw, 30px);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  --btn-bd: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid var(--btn-bd);
  border-radius: 4px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.22s var(--ease), border-color 0.22s var(--ease),
    color 0.22s var(--ease);
}

.btn:hover {
  --btn-bg: var(--navy-hover);
  --btn-bd: var(--navy-hover);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy);
  --btn-bd: var(--line);
}

.btn--ghost:hover {
  --btn-bg: transparent;
  --btn-fg: var(--navy);
  --btn-bd: var(--navy);
}

.btn--light {
  --btn-bg: #fff;
  --btn-fg: var(--navy);
  --btn-bd: #fff;
}

.btn--light:hover {
  --btn-bg: #e9eef5;
  --btn-bd: #e9eef5;
}

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-bd: rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
  --btn-bg: rgba(255, 255, 255, 0.1);
  --btn-bd: rgba(255, 255, 255, 0.8);
  --btn-fg: #fff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 560px) {
  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Inline text link with a rule that extends on hover */
.link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.22s var(--ease), color 0.22s var(--ease);
}

.link:hover {
  border-color: var(--navy);
}

.link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.28s var(--ease);
}

.link:hover svg {
  transform: translateX(4px);
}

.dark .link {
  color: #fff;
  border-color: var(--rule-dark);
}

.dark .link:hover {
  border-color: #fff;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.site-header--overlay {
  background: transparent;
  border-bottom-color: transparent;
}

.site-header--overlay::before {
  content: "";
  position: absolute;
  inset: 0 0 -60px;
  background: linear-gradient(
    180deg,
    rgba(2, 21, 48, 0.55) 0%,
    rgba(2, 21, 48, 0) 100%
  );
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.site-header--overlay.is-scrolled {
  background: var(--navy);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.site-header--overlay.is-scrolled::before {
  opacity: 0;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Brand lockup */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand__mark {
  height: 38px;
  width: auto;
}

/* Full lockup (mark + DELPHIN wordmark) -only where there is room for it */
.brand--full .brand__mark {
  height: 62px;
}

.brand__divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.28);
}

.brand--full .brand__divider {
  height: 44px;
}

.brand--full .brand__name {
  font-size: 1.0625rem;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .brand__mark {
    height: 30px;
  }
  .brand--full .brand__mark {
    height: 52px;
  }
  .brand__divider {
    height: 22px;
  }
  .brand__name {
    font-size: 0.8125rem;
    letter-spacing: 0.16em;
  }
}

/* Desktop nav */
.nav {
  display: none;
  align-items: center;
  gap: clamp(22px, 2.6vw, 40px);
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }
}

.nav__link {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  padding-block: 6px;
  transition: color 0.2s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--ease);
}

.nav__link:hover {
  color: #fff;
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav__link[aria-current="page"] {
  color: #fff;
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: inline-flex;
    min-height: 44px;
    padding: 0 22px;
    font-size: 0.875rem;
  }
}

/* Burger */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  align-items: flex-end;
}

@media (min-width: 1024px) {
  .burger {
    display: none;
  }
}

.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease),
    width 0.3s var(--ease);
}

.burger span:nth-child(2) {
  width: 17px;
}

body.is-menu-open .burger span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

body.is-menu-open .burger span:nth-child(2) {
  opacity: 0;
}

body.is-menu-open .burger span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  width: 24px;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy);
  padding: calc(var(--header-h) + 40px) var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-28px) scale(0.97);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease),
    visibility 0.6s;
  overflow-y: auto;
}

body.is-menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
}

.mobile-menu__list a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 7vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

body.is-menu-open .mobile-menu__list a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--stagger, 0s);
}

.mobile-menu__list a:nth-child(1) {
  --stagger: 0.16s;
}
.mobile-menu__list a:nth-child(2) {
  --stagger: 0.24s;
}
.mobile-menu__list a:nth-child(3) {
  --stagger: 0.32s;
}
.mobile-menu__list a:nth-child(4) {
  --stagger: 0.4s;
}
.mobile-menu__list a:nth-child(5) {
  --stagger: 0.48s;
}

.mobile-menu__list a[aria-current="page"] {
  color: rgba(255, 255, 255, 0.55);
}

.mobile-menu__foot {
  padding-top: 40px;
  display: grid;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

body.is-menu-open .mobile-menu__foot {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.44s;
}

.mobile-menu__contact {
  display: grid;
  gap: 4px;
  font-size: 0.9375rem;
  color: var(--on-navy);
}

.mobile-menu__contact a:hover {
  color: #fff;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-deep);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      180deg,
      rgba(2, 18, 42, 0.62) 0%,
      rgba(2, 18, 42, 0.34) 38%,
      rgba(2, 18, 42, 0.82) 100%
    ),
    linear-gradient(90deg, rgba(3, 31, 67, 0.55) 0%, rgba(3, 31, 67, 0) 62%);
}

.hero__inner {
  position: relative;
  width: 100%;
  padding-top: calc(var(--header-h) + clamp(60px, 12vh, 140px));
  padding-bottom: clamp(56px, 9vh, 110px);
}

.hero__content {
  max-width: 940px;
}

.hero .display {
  color: #fff;
  max-width: 16ch;
}

.hero__lead {
  margin-top: clamp(22px, 2.6vw, 32px);
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.0625rem, 1.25vw, 1.1875rem);
  line-height: 1.66;
}

.hero__actions {
  margin-top: clamp(32px, 3.6vw, 44px);
}

.hero__foot {
  position: relative;
  display: none;
}

.hero__note {
  max-width: 22ch;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
}

@media (min-width: 900px) {
  .hero__foot {
    display: flex;
    justify-content: flex-end;
    margin-top: clamp(44px, 7vh, 88px);
  }
}

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  background: var(--navy);
  color: var(--on-navy);
  padding-top: calc(var(--header-h) + clamp(56px, 9vw, 120px));
  padding-bottom: clamp(56px, 8vw, 110px);
  overflow: hidden;
}

.page-hero--media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center 35%;
}

.page-hero--media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      var(--navy) 0%,
      rgba(3, 31, 67, 0.94) 38%,
      rgba(3, 31, 67, 0.62) 100%
    ),
    linear-gradient(180deg, rgba(2, 18, 42, 0.6) 0%, rgba(2, 18, 42, 0.35) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__grid {
  display: grid;
  gap: clamp(24px, 3vw, 40px);
}

@media (min-width: 900px) {
  .page-hero__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    gap: clamp(40px, 6vw, 100px);
    align-items: end;
  }
}

.page-hero h1 {
  color: #fff;
}

.page-hero .label {
  margin-bottom: clamp(20px, 2.4vw, 28px);
}

.page-hero__lead {
  color: var(--on-navy);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.7;
  text-align: justify;
  text-align-last: left;
}

/* Breadcrumb-ish */
.crumbs {
  font-size: 0.8125rem;
  color: var(--on-navy-muted);
  margin-bottom: 22px;
}

/* --------------------------------------------------------------------------
   Intro / editorial
   -------------------------------------------------------------------------- */

#o-nama {
  overflow: hidden;
}

.editorial {
  display: grid;
  gap: clamp(36px, 5vw, 56px);
  position: relative;
}

@media (min-width: 900px) {
  .editorial {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: clamp(48px, 7vw, 110px);
    align-items: center;
  }
}

.editorial__text {
  position: relative;
}

.editorial__text > * + * {
  margin-top: clamp(20px, 2.2vw, 28px);
}

.editorial__media {
  position: relative;
  z-index: 1;
}

/* Offset frame peeking out behind the photo -a small layered, gallery-like
   touch instead of a plain rectangular image */
.editorial__media::before {
  content: "";
  position: absolute;
  top: clamp(16px, 2.2vw, 24px);
  left: clamp(16px, 2.2vw, 24px);
  right: clamp(-20px, -2vw, -14px);
  bottom: clamp(-20px, -2vw, -14px);
  border: 1px solid var(--line);
  z-index: -1;
}

.editorial__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-block {
  background: var(--sand-deep);
  overflow: hidden;
}

.media-block img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (max-width: 640px) {
  .media-block img {
    aspect-ratio: 4 / 3;
  }
}

/* Cutout product photography -shown at its own size, no background plate */
.media-block--cutout {
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 32px) 0;
}

.media-block--cutout img {
  width: auto;
  height: auto;
  max-width: min(100%, 300px);
  max-height: 340px;
  aspect-ratio: auto;
  object-fit: contain;
}

.figure-caption {
  margin-top: 14px;
  font-size: 0.8125rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* Three restrained principles, hairline separated -no cards */
.principles {
  display: grid;
  gap: 0;
  margin-top: clamp(56px, 7vw, 96px);
  border-top: 1px solid var(--line);
}

@media (min-width: 800px) {
  .principles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(32px, 5vw, 80px);
  }
}

.principle {
  padding-block: clamp(26px, 3vw, 38px);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 800px) {
  .principle {
    border-bottom: 0;
    padding-right: clamp(8px, 2vw, 24px);
  }
}

.principle__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 20px;
}

.principle__icon svg {
  width: 20px;
  height: 20px;
}

.principle__index {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.principle h3 {
  margin-top: 14px;
  font-size: 1.1875rem;
  letter-spacing: -0.018em;
}

.principle p {
  margin-top: 10px;
  font-size: 0.9375rem;
  line-height: 1.68;
  max-width: 34ch;
}

/* --------------------------------------------------------------------------
   Split feature (bleeding image + text)
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  align-items: stretch;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 660px;
  }
  .split--media-first .split__media {
    order: -1;
  }
}

.split__media {
  position: relative;
  min-height: 300px;
}

.split__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 104px) var(--gutter);
}

@media (min-width: 900px) {
  .split--media-first .split__body {
    padding-right: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
    padding-left: clamp(48px, 5vw, 80px);
  }
  .split:not(.split--media-first) .split__body {
    padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
    padding-right: clamp(48px, 5vw, 80px);
  }
}

.split__body-inner {
  max-width: 46ch;
}

.split__body-inner p {
  text-align: justify;
  text-align-last: left;
}

.split__body-inner > * + * {
  margin-top: clamp(20px, 2.2vw, 28px);
}

/* Hairline list used inside dark sections */
.hair-list {
  border-top: 1px solid var(--rule-dark);
}

.hair-list li {
  padding-block: 16px;
  border-bottom: 1px solid var(--rule-dark);
  font-size: 0.9375rem;
  color: var(--on-navy);
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.hair-list li::before {
  content: counter(hair, decimal-leading-zero);
  counter-increment: hair;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  flex: 0 0 auto;
}

.hair-list {
  counter-reset: hair;
}

.hair-list--light {
  border-top-color: var(--line);
}

.hair-list--light li {
  border-bottom-color: var(--line);
  color: var(--text);
}

.hair-list--light li::before {
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Products
   -------------------------------------------------------------------------- */

.product {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

@media (min-width: 900px) {
  .product {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: clamp(40px, 6vw, 108px);
  }
  .product--reverse .product__media {
    order: 2;
  }
  .product--reverse {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  }
}

.product + .product {
  margin-top: clamp(72px, 9vw, 150px);
}

.product__media {
  position: relative;
  background: var(--sand-deep);
  overflow: hidden;
}

.product__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Cutout product photography -shown at its own size, no background plate */
.product__media--cutout {
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 32px) 0;
}

.product__media--cutout img {
  width: auto;
  height: auto;
  max-width: min(100%, 345px);
  max-height: 391px;
  aspect-ratio: auto;
  object-fit: contain;
}

.product__index {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--muted);
  display: block;
  margin-bottom: 16px;
}

.product__body h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.product__desc {
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.72;
  text-align: justify;
  text-align-last: left;
}

.product__list {
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.product__list li {
  padding-block: 13px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9375rem;
  color: var(--text-strong);
}

.product__cta {
  margin-top: 30px;
}

/* --------------------------------------------------------------------------
   Product showcase (dark, gallery + features) -used on the products page
   -------------------------------------------------------------------------- */

.showcase-product__grid {
  display: grid;
  gap: clamp(40px, 5vw, 56px);
}

@media (min-width: 900px) {
  .showcase-product__grid {
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    gap: clamp(56px, 7vw, 104px);
    align-items: center;
  }
  .showcase-product--reverse .showcase-product__gallery {
    order: 2;
  }
}

.showcase-product__frame {
  position: relative;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--rule-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 5vw, 52px);
  overflow: hidden;
}

.showcase-product__frame img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.25s var(--ease);
}

.showcase-product__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-navy-muted);
}

.showcase-product__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.showcase-product__thumb {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--rule-dark);
  opacity: 0.55;
  cursor: pointer;
  transition: opacity 0.2s var(--ease), border-color 0.2s var(--ease);
}

.showcase-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.showcase-product__thumb:hover {
  opacity: 0.8;
}

.showcase-product__thumb.is-active {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.55);
}

.showcase-product__kicker {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-navy-muted);
}

.showcase-product__name {
  margin-top: 14px;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  letter-spacing: -0.02em;
  color: #fff;
}

.showcase-product__lead {
  margin-top: 20px;
  color: var(--on-navy);
  font-size: 1.0625rem;
  line-height: 1.72;
  text-align: justify;
  text-align-last: left;
}

.showcase-product__features {
  margin-top: clamp(36px, 4.5vw, 48px);
  display: grid;
  gap: 26px;
  padding-top: clamp(28px, 3.5vw, 40px);
  border-top: 1px solid var(--rule-dark);
}

.showcase-product__feature {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.showcase-product__feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--rule-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.showcase-product__feature-icon svg {
  width: 19px;
  height: 19px;
}

.showcase-product__feature h3 {
  font-size: 1.0625rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.showcase-product__feature p {
  margin-top: 6px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--on-navy);
}

.showcase-product__cta {
  margin-top: clamp(32px, 4vw, 44px);
}

.showcase-product + .showcase-product {
  border-top: 1px solid var(--rule-dark);
}

/* A subtly lighter navy tone for section rhythm on an all-dark page */
.section--tint {
  background: var(--navy-mid);
}

.dark .cta-band {
  border-top-color: var(--rule-dark);
}

/* --------------------------------------------------------------------------
   Benefits -editorial grid, no cards
   -------------------------------------------------------------------------- */

.benefits {
  display: grid;
  border-top: 1px solid var(--line);
}

@media (min-width: 800px) {
  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(48px, 8vw, 140px);
  }
}

.benefit {
  padding-block: clamp(28px, 3.4vw, 46px);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

.benefit__num {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding-top: 6px;
}

.benefit h3 {
  font-size: clamp(1.15rem, 1.5vw, 1.375rem);
  letter-spacing: -0.02em;
}

.benefit p {
  margin-top: 12px;
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 44ch;
}

/* --------------------------------------------------------------------------
   Experience (video band)
   -------------------------------------------------------------------------- */

.showcase {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  isolation: isolate;
}

.showcase__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.showcase__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      90deg,
      rgba(2, 18, 42, 0.92) 0%,
      rgba(2, 18, 42, 0.72) 45%,
      rgba(2, 18, 42, 0.42) 100%
    ),
    linear-gradient(180deg, rgba(2, 18, 42, 0.5) 0%, rgba(2, 18, 42, 0.6) 100%);
}

.showcase__inner {
  padding-block: clamp(88px, 13vw, 190px);
}

.showcase__content {
  max-width: 620px;
}

.showcase__content > * + * {
  margin-top: clamp(20px, 2.4vw, 30px);
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  border-top: 1px solid var(--line);
}

.cta-band__grid {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  align-items: end;
}

@media (min-width: 900px) {
  .cta-band__grid {
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    gap: clamp(40px, 5vw, 88px);
  }
  .cta-band__grid .btn-row {
    justify-content: flex-end;
  }
}

.cta-band p {
  margin-top: 20px;
  max-width: 48ch;
}

/* --------------------------------------------------------------------------
   Certificates
   -------------------------------------------------------------------------- */

.certs {
  display: grid;
  gap: clamp(28px, 3.2vw, 44px);
}

@media (min-width: 640px) {
  .certs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .certs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.cert {
  display: flex;
  flex-direction: column;
}

.cert__frame {
  position: relative;
  aspect-ratio: 1 / 1.414;
  background: var(--sand-deep);
  border: 1px solid var(--line);
  display: grid;
  place-items: stretch;
  padding: clamp(18px, 2.4vw, 30px);
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}

.cert:hover .cert__frame {
  border-color: #c9d0d9;
}

.cert__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cert__placeholder {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  padding: 24px;
}

.cert__placeholder svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.25;
  fill: none;
  opacity: 0.7;
}

.cert__placeholder span {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cert__body {
  padding-top: 20px;
}

.cert__index {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.cert__body :is(h2, h3) {
  margin-top: 10px;
  font-size: 1.125rem;
  letter-spacing: -0.015em;
}

.cert p {
  margin-top: 10px;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.cert__action {
  margin-top: 16px;
}

.cert__action .link {
  font-size: 0.875rem;
}

.notice {
  border-left: 2px solid var(--navy);
  padding: 4px 0 4px 22px;
  max-width: 62ch;
  font-size: 0.9375rem;
  line-height: 1.7;
  text-align: justify;
  text-align-last: left;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  gap: clamp(48px, 6vw, 80px);
}

@media (min-width: 950px) {
  .contact-grid {
    grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
    gap: clamp(56px, 8vw, 130px);
    align-items: start;
  }
}

.contact-list {
  border-top: 1px solid var(--line);
}

.contact-list > div {
  padding-block: clamp(22px, 2.4vw, 30px);
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.contact-list dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  letter-spacing: -0.02em;
  color: var(--text-strong);
  line-height: 1.3;
}

.contact-list dd a {
  transition: color 0.2s var(--ease);
  border-bottom: 1px solid transparent;
}

.contact-list dd a:hover {
  border-bottom-color: currentColor;
}

.map {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 320px;
  background: var(--sand);
  border: 1px solid var(--line);
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.02);
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.form {
  display: grid;
  gap: clamp(20px, 2.2vw, 26px);
}

.form__row {
  display: grid;
  gap: clamp(20px, 2.2vw, 26px);
}

@media (min-width: 640px) {
  .form__row--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.field > label,
.field > .field__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 11px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--text-strong);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 14px 16px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  appearance: none;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}

.field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5769' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
  cursor: pointer;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #adb5c0;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #c2cad4;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(3, 31, 67, 0.1);
}

.field input:user-invalid,
.field textarea:user-invalid {
  border-color: #b3452f;
}

.form__consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.875rem;
  line-height: 1.6;
}

.form__consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--navy);
  flex: 0 0 auto;
}

.form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-top: 4px;
}

@media (max-width: 560px) {
  .form__foot {
    align-items: stretch;
    gap: 16px;
  }
  .form__foot .btn {
    width: 100%;
  }
}

.form__status {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.form__status[data-state="ok"] {
  color: #1c6b46;
}

.form__status[data-state="error"] {
  color: #b3452f;
}

/* --------------------------------------------------------------------------
   Careers
   -------------------------------------------------------------------------- */

.values {
  display: grid;
  border-top: 1px solid var(--line);
}

@media (min-width: 800px) {
  .values {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(32px, 5vw, 80px);
  }
}

.value {
  padding-block: clamp(26px, 3vw, 40px);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 800px) {
  .value {
    border-bottom: 0;
  }
}

.value h3 {
  font-size: 1.125rem;
  letter-spacing: -0.018em;
}

.value p {
  margin-top: 12px;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.value__num {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: block;
  margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--navy-deep);
  color: var(--on-navy);
  padding-top: clamp(64px, 7vw, 104px);
}

.footer-grid {
  display: grid;
  gap: clamp(40px, 5vw, 56px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr);
    gap: clamp(40px, 6vw, 100px);
  }
}

.footer-brand .brand {
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 34ch;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--on-navy);
}

.footer-title {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 22px;
}

.footer-nav li + li {
  margin-top: 12px;
}

.footer-nav a,
.footer-contact a {
  font-size: 0.9375rem;
  color: var(--on-navy);
  transition: color 0.2s var(--ease);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact li + li {
  margin-top: 12px;
}

.footer-contact address {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--on-navy);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

/* --------------------------------------------------------------------------
   Cookie consent
   -------------------------------------------------------------------------- */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 130;
  max-width: 420px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 30px 70px rgba(3, 15, 33, 0.4);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease),
    visibility 0.5s;
}

.cookie-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.cookie-banner__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}

.cookie-banner__icon svg {
  width: 20px;
  height: 20px;
}

.cookie-banner__body {
  flex: 1;
  min-width: 0;
}

.cookie-banner__title {
  margin: 2px 0 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}

.cookie-banner__text {
  margin: 0 0 18px;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--on-navy);
}

.cookie-banner__text a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-banner .btn {
  min-height: 42px;
  padding: 0 20px;
  font-size: 0.8125rem;
}

@media (max-width: 560px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 20px;
    gap: 14px;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner .btn {
    flex: 1;
  }
}

/* --------------------------------------------------------------------------
   Scroll reveal (progressive enhancement)
   -------------------------------------------------------------------------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: var(--delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.js [data-reveal="media"] {
  clip-path: inset(0 0 12% 0);
  opacity: 0;
  transform: none;
  transition: clip-path 1.1s var(--ease), opacity 0.9s var(--ease);
}

.js [data-reveal="media"].is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js [data-reveal],
  .js [data-reveal="media"] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Utilities */
.mt-s {
  margin-top: clamp(20px, 2.4vw, 30px);
}
.mt-m {
  margin-top: clamp(32px, 4vw, 52px);
}
.mt-l {
  margin-top: clamp(48px, 6vw, 88px);
}
.max-58 {
  max-width: 58ch;
}
