/* STYLE: Chromatic Portfolio — editorial corporate catalogue using STL Marine Blue, asymmetry, color-rule motifs, and product-first storytelling. */
:root {
  --marine: #006db7;
  --marine-deep: #003e70;
  --marine-pale: #e9f6fc;
  --ink: #092538;
  --ink-soft: #476273;
  --paper: #fffefa;
  --mist: #f3f6f3;
  --orange: #f58225;
  --green: #6dbf43;
  --red: #ee3441;
  --line: rgba(9, 37, 56, 0.14);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.top-strip {
  background: var(--ink);
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.top-strip__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-strip p {
  margin: 0;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 100%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(109, 191, 67, .15);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  background: rgba(255, 254, 250, .88);
  backdrop-filter: blur(15px);
  transition: background .22s var(--ease-out), box-shadow .22s var(--ease-out), border-color .22s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(255, 254, 250, .96);
  box-shadow: 0 10px 28px rgba(0, 47, 80, .08);
  border-color: var(--line);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.wordmark {
  width: 170px;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  padding: 9px 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .18s var(--ease-out);
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--marine);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .2s var(--ease-out);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--marine);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav-link--contact {
  padding: 11px 15px;
  border: 1px solid var(--marine);
  color: var(--marine);
}

.nav-link--contact:hover {
  background: var(--marine);
  color: white;
}

.nav-link--contact::after {
  display: none;
}

.nav-link--contact span {
  margin-left: 3px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform .18s var(--ease-out), opacity .18s var(--ease-out);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 66px 0 74px;
  background: linear-gradient(115deg, #f5fafc 0%, #f5fafc 46%, #ddf4fc 100%);
}

.hero::after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 36%;
  height: 100%;
  content: "";
  background: var(--marine);
  clip-path: polygon(31% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  min-height: 535px;
  align-items: center;
  gap: 38px;
}

.hero-lines {
  position: absolute;
  top: 60px;
  left: -38px;
  display: flex;
  gap: 6px;
  transform: rotate(-19deg);
}

.hero-lines i {
  display: block;
  width: 3px;
  height: 150px;
  background: var(--marine);
  opacity: .16;
}

.hero-lines i:nth-child(2) {
  background: var(--green);
}

.hero-lines i:nth-child(3) {
  background: var(--orange);
}

.hero-lines i:nth-child(4) {
  background: var(--red);
}

.hero-copy {
  max-width: 585px;
  padding-top: 18px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 17px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 35px;
  height: 3px;
  background: var(--orange);
}

.eyebrow--blue {
  color: var(--marine);
}

.eyebrow--blue span {
  background: var(--marine);
}

.eyebrow--light {
  color: rgba(255, 255, 255, .72);
}

.eyebrow--light span {
  background: var(--green);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 23px;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
}

h1 {
  max-width: 560px;
  font-size: clamp(3.35rem, 6.2vw, 5.65rem);
  line-height: .93;
}

h1 em,
h2 em {
  color: var(--marine);
  font-style: italic;
}

h2 span {
  color: var(--marine);
  font-style: normal;
}

.hero-summary {
  max-width: 470px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 13px 19px;
  border: 1px solid transparent;
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .16s var(--ease-out), background .2s var(--ease-out), color .2s var(--ease-out);
}

.button:hover {
  transform: translateY(-3px);
}

.button:active {
  transform: scale(.97);
}

.button--primary {
  background: var(--marine);
  box-shadow: 7px 7px 0 var(--orange);
}

.button--primary:hover {
  background: var(--marine-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid currentColor;
  padding: 4px 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: gap .2s var(--ease-out), color .2s var(--ease-out);
}

.text-link:hover {
  gap: 16px;
  color: var(--marine);
}

.text-link--blue {
  color: var(--marine);
}

.text-link--on-dark {
  color: white;
}

.hero-footnote {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 19px;
  align-items: start;
  max-width: 470px;
  margin-top: 65px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.line-label {
  color: var(--marine);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.hero-footnote p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.hero-image-frame {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 30px;
  bottom: 18px;
  left: 35px;
  overflow: hidden;
  background: #c5e9f7;
  box-shadow: 18px 20px 0 rgba(9, 37, 56, .16);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(0, 109, 183, .08), rgba(0, 109, 183, 0) 55%);
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-ring {
  position: absolute;
  z-index: 1;
  border-radius: 100%;
}

.hero-ring--one {
  top: -45px;
  right: -50px;
  width: 212px;
  height: 212px;
  border: 2px solid rgba(255, 255, 255, .44);
}

.hero-ring--two {
  bottom: -36px;
  left: -32px;
  width: 146px;
  height: 146px;
  border: 18px solid var(--green);
  opacity: .94;
}

.hero-brand-chip {
  position: absolute;
  z-index: 3;
  right: -10px;
  bottom: 47px;
  display: flex;
  width: 176px;
  min-height: 92px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--paper);
  color: var(--ink-soft);
  box-shadow: 0 13px 24px rgba(0, 48, 80, .14);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-brand-chip img {
  width: 66px;
  max-height: 44px;
  object-fit: contain;
}

.chip-monogram {
  display: grid;
  width: 61px;
  height: 43px;
  flex: 0 0 61px;
  place-items: center;
  background: var(--marine);
  color: white;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.08em;
}

.orbit-stamp {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 2px;
  display: grid;
  width: 75px;
  height: 75px;
  place-items: center;
  border-radius: 100%;
  background: var(--orange);
  box-shadow: 7px 7px 0 var(--red);
}

.orbit-stamp img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.hero-catalogue {
  position: absolute;
  z-index: 3;
  top: 42px;
  right: -4px;
  width: 194px;
  padding: 13px 14px 10px;
  border: 1px solid rgba(255, 255, 255, .62);
  background: rgba(0, 62, 112, .91);
  color: white;
  box-shadow: 9px 10px 0 rgba(245, 130, 37, .88);
  backdrop-filter: blur(4px);
}

.catalogue-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}

.catalogue-top b {
  color: #b6e6ff;
}

.catalogue-lines {
  display: grid;
  gap: 5px;
  padding: 10px 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
}

.catalogue-rules {
  display: flex;
  gap: 4px;
}

.catalogue-rules i {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--marine);
}

.catalogue-rules i:nth-child(2) {
  background: var(--orange);
}

.catalogue-rules i:nth-child(3) {
  background: var(--green);
}

.catalogue-rules i:nth-child(4) {
  background: var(--red);
}

.brand-ticker {
  position: relative;
  background: var(--ink);
  color: white;
  overflow: hidden;
}

.brand-ticker::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--marine) 0 46%, var(--orange) 46% 58%, var(--green) 58% 74%, var(--red) 74% 100%);
}

.brand-ticker__inner {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: auto;
  scrollbar-width: none;
}

.brand-ticker__inner::-webkit-scrollbar {
  display: none;
}

.brand-ticker p {
  flex: 0 0 auto;
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.brand-ticker p:first-child {
  color: rgba(255, 255, 255, .44);
  font-size: 10px;
}

.brand-ticker span {
  flex: 0 0 5px;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: var(--orange);
}

.brand-ticker span:nth-of-type(2) {
  background: var(--green);
}

.brand-ticker span:nth-of-type(3) {
  background: var(--red);
}

.company {
  position: relative;
  padding: 126px 0;
  background: var(--paper);
}

.company::after {
  position: absolute;
  right: 7%;
  bottom: 0;
  width: 184px;
  height: 9px;
  content: "";
  background: linear-gradient(90deg, var(--marine) 0 42%, var(--orange) 42% 62%, var(--green) 62% 82%, var(--red) 82%);
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 4fr 3.5fr;
  gap: clamp(28px, 5vw, 76px);
}

.section-index {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: var(--marine);
}

.section-index span {
  font-family: var(--serif);
  font-size: 35px;
  line-height: 1;
}

.section-index i {
  display: block;
  width: 1px;
  height: 74px;
  background: var(--marine);
}

.section-index p {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.company-copy {
  max-width: 500px;
}

h2 {
  font-size: clamp(2.85rem, 4.6vw, 4.3rem);
  line-height: .98;
}

.company-copy .lead {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
}

.company-copy>p:not(.lead) {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.company-panel {
  align-self: start;
  padding: 28px 29px 10px;
  background: var(--marine-pale);
  border-top: 5px solid var(--marine);
}

.panel-kicker {
  margin-bottom: 20px;
  color: var(--marine);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.focus-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 109, 183, .18);
}

.focus-number {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}

.focus-item h3 {
  margin: -4px 0 5px;
  font-size: 16px;
  font-weight: 800;
}

.focus-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

.products {
  padding: 113px 0 78px;
  overflow: hidden;
  background: var(--marine);
  color: white;
}

.products-intro {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 48px;
}

.products h2 {
  margin-bottom: 0;
}

.products h2 em {
  color: #b6e6ff;
}

.products-intro>p {
  max-width: 420px;
  margin: 0 0 4px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.75;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* ================= PRODUCT CARD SYSTEM (PRODUCTION GRADE - TIGHT & SEAMLESS) ================= */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: unset;
  height: 100%;
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
  color: var(--ink);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.28s ease;
  box-shadow: 0 8px 24px rgba(0, 32, 58, 0.06);
  border: 1px solid rgba(9, 37, 56, 0.08);
}

.product-card:hover {
  z-index: 5;
  transform: translateY(-6px);
  box-shadow: 10px 12px 0 rgba(0, 32, 58, 0.18), 0 20px 38px rgba(0, 32, 58, 0.1);
}

.product-card--shampoo {
  background: #fdf8f2;
  border-color: rgba(245, 130, 37, 0.22);
}

.product-card--haircare {
  background: #f0f8fd;
  border-color: rgba(0, 109, 183, 0.22);
}

.product-card--personal {
  background: #fbf5ff;
  border-color: rgba(100, 44, 159, 0.22);
}

.product-card--formula {
  background: #f2f9ee;
  border-color: rgba(109, 191, 67, 0.22);
}

.product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.card-no {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.label-stamp {
  display: inline-block;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 2px 6px;
  border: 1px solid rgba(9, 37, 56, 0.25);
  border-radius: 4px;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.category-pill {
  padding: 4px 9px;
  border: 1px solid currentColor;
  border-radius: 50px;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  background: rgba(255, 255, 255, 0.6);
}

.product-card__top-line {
  height: 1px;
  background: rgba(9, 37, 56, 0.1);
  margin: 8px 0 10px;
  width: 100%;
}

.product-card__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 240px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 8px;
  margin: 0 0 10px 0;
  box-shadow: 0 3px 12px rgba(0, 32, 58, 0.04);
  border: 1px solid rgba(9, 37, 56, 0.06);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .product-card__img {
  transform: scale(1.06);
}

.product-card__stripe {
  height: 3px;
  border-radius: 2px;
  width: 100%;
  margin: 0 0 10px 0;
  background: var(--marine);
}

.product-card--shampoo .product-card__stripe {
  background: linear-gradient(90deg, var(--orange) 0 62%, var(--red) 62%);
}

.product-card--haircare .product-card__stripe {
  background: linear-gradient(90deg, var(--marine) 0 66%, var(--green) 66%);
}

.product-card--personal .product-card__stripe {
  background: linear-gradient(90deg, #642c9f 0 47%, var(--orange) 47% 76%, var(--green) 76%);
}

.product-card--formula .product-card__stripe {
  background: linear-gradient(90deg, var(--green) 0 60%, var(--marine) 60%);
}

.product-card__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 0;
  width: 100%;
}

.product-card__info {
  flex: 1;
  min-width: 0;
}

.product-card__info h3 {
  margin: 0 0 4px;
  font-size: 14.5px;
  font-weight: 800;
  color: #092538;
  line-height: 1.3;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 38px;
}

.product-card__info p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.round-button {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  padding: 0;
  border: 1.5px solid var(--ink);
  border-radius: 100%;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 2px;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.round-button:hover {
  background: var(--ink);
  color: white;
  transform: rotate(45deg);
}

.round-button:active {
  transform: scale(0.94);
}

/* Artistic Emblem fallbacks when product has no photo */
.card-emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
}

.card-emblem--bottle {
  position: relative;
  width: 86px;
  height: 150px;
  background: linear-gradient(110deg, #ef6d39 0%, #f7a946 42%, #ef6d39 100%);
  border-radius: 18px 18px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 8px 18px rgba(239, 109, 57, 0.25);
}

.card-emblem--bottle .emblem-cap {
  position: absolute;
  top: -12px;
  width: 40px;
  height: 12px;
  background: #542d37;
  border-radius: 4px 4px 0 0;
}

.card-emblem--swash span {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--marine);
  line-height: 1;
}

.card-emblem--swash small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--ink);
  margin-top: 4px;
}

.card-emblem--sparkle span {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 800;
  color: #642c9f;
  letter-spacing: -0.05em;
}

.card-emblem--formula span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 6px 12px;
  border-radius: 20px;
}

.stl-panel-word {
  position: relative;
  z-index: 2;
  width: max-content;
  margin: 73px auto 0;
  color: var(--marine);
  text-align: center;
  transform: rotate(-7deg);
}

.stl-panel-word span {
  display: block;
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 400;
  letter-spacing: -.12em;
  line-height: .7;
}

.stl-panel-word b {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: .16em;
}

.products-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .3);
}

.products-note p {
  margin: 0 auto 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
}

.note-line {
  display: block;
  width: 50px;
  height: 3px;
  flex: 0 0 auto;
  background: var(--green);
}

.quality {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 545px;
  background: var(--mist);
}

.quality-image {
  min-height: 545px;
}

.quality-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-copy {
  display: flex;
  max-width: 580px;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(32px, 8vw, 132px) 80px clamp(32px, 6vw, 90px);
}

.quality-copy h2 {
  margin-bottom: 20px;
}

.quality-copy>p:not(.eyebrow) {
  max-width: 405px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.quality-ribbon {
  display: flex;
  gap: 4px;
  width: 160px;
  margin-bottom: 20px;
}

.quality-ribbon span {
  width: 100%;
  height: 4px;
  background: var(--marine);
}

.quality-ribbon span:nth-child(2) {
  background: var(--orange);
}

.quality-ribbon span:nth-child(3) {
  background: var(--green);
}

.quality-ribbon span:nth-child(4) {
  background: var(--red);
}

.quality-list {
  border-top: 1px solid var(--line);
}

.quality-list>div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.quality-list span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}

.quality-list p {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: var(--ink);
  color: white;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 90px;
  align-items: center;
}

.contact-copy {
  max-width: 530px;
}

.contact h2 em {
  color: #b6e6ff;
}

.contact-copy>p:not(.eyebrow) {
  max-width: 440px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .73);
  font-size: 15px;
  line-height: 1.75;
}

.contact-brandline {
  display: flex;
  align-items: center;
  gap: 13px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .11em;
}

.contact-brandline img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.contact-brandline small {
  color: rgba(255, 255, 255, .52);
  font-size: 8px;
  letter-spacing: .12em;
}

.contact-orbit {
  position: absolute;
  border-radius: 100%;
}

.contact-orbit--orange {
  right: -100px;
  bottom: -118px;
  width: 338px;
  height: 338px;
  border: 48px solid var(--orange);
}

.contact-orbit--green {
  top: -150px;
  left: 47%;
  width: 246px;
  height: 246px;
  border: 1px solid rgba(109, 191, 67, .7);
}

.enquiry-form {
  padding: 29px;
  background: white;
  color: var(--ink);
  box-shadow: 15px 16px 0 var(--marine);
}

.form-heading {
  margin-bottom: 24px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  display: block;
  margin-bottom: 4px;
  color: var(--marine);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.form-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.enquiry-form label {
  display: block;
  margin: 14px 0;
}

.enquiry-form label>span {
  display: block;
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: #fcfdfc;
  color: var(--ink);
  font-size: 12px;
  transition: border-color .18s var(--ease-out), box-shadow .18s var(--ease-out);
}

.enquiry-form input:focus,
.enquiry-form select:focus {
  border-color: var(--marine);
  box-shadow: 0 0 0 3px rgba(0, 109, 183, .12);
}

.button--light {
  width: 100%;
  margin-top: 9px;
  background: var(--marine);
}

.button--light:hover {
  background: var(--marine-deep);
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--marine);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}

.site-footer {
  padding: 37px 0;
  background: #031826;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr .8fr;
  align-items: center;
  gap: 30px;
}

.footer-wordmark {
  width: 138px;
  max-height: 45px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, .75);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .18s var(--ease-out);
}

.footer-links a:hover {
  color: #b6e6ff;
}

.copyright {
  justify-self: end;
  text-align: right;
  line-height: 1.65;
}

.product-dialog {
  width: min(440px, calc(100% - 42px));
  padding: 34px;
  border: 0;
  color: var(--ink);
  box-shadow: 16px 17px 0 var(--orange), 0 30px 90px rgba(0, 0, 0, .25);
}

.product-dialog::backdrop {
  background: rgba(3, 24, 38, .72);
  backdrop-filter: blur(3px);
}

.dialog-close {
  position: absolute;
  top: 11px;
  right: 13px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 100%;
  background: var(--mist);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}

.dialog-category {
  margin-bottom: 13px;
  color: var(--marine);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.product-dialog h2 {
  margin-bottom: 13px;
  font-size: 43px;
}

.product-dialog>p:not(.dialog-category) {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--late {
  transition-delay: .11s;
}

.reveal--delay-1 {
  transition-delay: .08s;
}

.reveal--delay-2 {
  transition-delay: .16s;
}

.reveal--delay-3 {
  transition-delay: .24s;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-ring--one {
    animation: gentleSpin 18s linear infinite;
  }

  .hero-ring--two {
    animation: gentleFloat 5s ease-in-out infinite alternate;
  }

  @keyframes gentleSpin {
    to {
      transform: rotate(360deg);
    }
  }

  @keyframes gentleFloat {
    to {
      transform: translateY(-11px);
    }
  }
}

@media (max-width: 1000px) {
  .primary-nav {
    gap: 16px;
  }

  .hero-grid {
    grid-template-columns: 1fr .85fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    min-height: 390px;
  }

  .company-grid {
    grid-template-columns: 85px 1fr 1fr;
  }

  .contact-grid {
    gap: 48px;
  }

  .quality-copy {
    padding-right: 38px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .copyright {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-end;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 32px, 600px);
  }

  .top-strip__inner {
    justify-content: center;
    min-height: 32px;
  }

  .top-strip__inner p:last-child {
    display: none;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .wordmark {
    width: 132px;
    max-height: 46px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 16px 17px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 17px 25px rgba(0, 47, 80, .09);
    transform: translateY(-12px);
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s var(--ease-out), transform .2s var(--ease-out), visibility .2s var(--ease-out);
  }

  .primary-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .nav-link {
    padding: 13px 0;
  }

  .nav-link--contact {
    margin-top: 5px;
    padding-left: 14px;
  }

  .hero {
    padding: 55px 0 42px;
  }

  .hero::after {
    width: 41%;
  }

  .hero-grid {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 35px;
    align-items: stretch;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-summary {
    font-size: 15px;
  }

  .hero-footnote {
    margin-top: 48px;
  }

  .hero-visual {
    min-height: 392px;
  }

  .hero-image-frame {
    top: 16px;
    right: 22px;
    bottom: 15px;
    left: 15px;
  }

  .hero-brand-chip {
    right: 1px;
    bottom: 32px;
  }

  .orbit-stamp {
    left: 0;
  }

  .brand-ticker__inner {
    width: 100%;
    padding: 0 16px;
  }

  .company {
    padding: 74px 0;
  }

  .company-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-index {
    display: none;
  }

  .company-copy .lead {
    font-size: 18px;
  }

  .company-panel {
    max-width: 440px;
  }

  .products {
    padding: 72px 0 51px;
  }

  .products-intro {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 32px;
  }

  .product-grid {
    gap: 12px;
  }

  .product-card {
    min-height: unset;
    padding: 14px;
  }

  .product-card__media {
    max-height: 200px;
    margin-bottom: 8px;
  }

  .product-card__info h3 {
    font-size: 13.5px;
    min-height: 34px;
    margin-bottom: 3px;
  }

  .product-card__info p {
    font-size: 9px;
  }

  .round-button {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    font-size: 14px;
  }

  .products-note {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .products-note p {
    width: calc(100% - 65px);
  }

  .products-note .text-link {
    margin-left: 65px;
  }

  .quality {
    grid-template-columns: 1fr;
  }

  .quality-image {
    min-height: 310px;
  }

  .quality-copy {
    padding: 66px 24px;
  }

  .contact {
    padding: 74px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-orbit--green {
    left: auto;
    right: -100px;
  }

  .enquiry-form {
    padding: 22px;
    box-shadow: 9px 10px 0 var(--marine);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .copyright {
    grid-column: auto;
  }

  .reveal--delay-1,
  .reveal--delay-2,
  .reveal--delay-3 {
    transition-delay: 0s;
  }
}

@media (max-width: 390px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 362px;
  }

  .bottle {
    width: 104px;
    height: 180px;
  }

  .formula-photo {
    top: 50px;
    left: 13px;
    right: 13px;
    bottom: 68px;
    width: calc(100% - 26px);
    height: calc(100% - 118px);
  }

  .products-note p {
    width: 100%;
  }

  .products-note .text-link {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .hero-catalogue {
    top: 35px;
    right: 2px;
    width: 168px;
    padding: 10px;
  }

  .catalogue-lines {
    font-size: 8px;
  }

  .product-card::before {
    top: 45px;
    right: 13px;
    left: 13px;
  }

  .product-card::after {
    right: 13px;
    bottom: 63px;
    left: 13px;
  }

  .label-stamp {
    top: 55px;
    left: 13px;
  }
}