@font-face {
  font-family: "Starduster";
  src: url("assets/starduster.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #ff6a13;
  --orange-deep: #ef4f00;
  --ink: #0b0d0f;
  --charcoal: #15181c;
  --charcoal-2: #202328;
  --paper: #f6f4f1;
  --paper-2: #ffffff;
  --text: #15171a;
  --muted: #676d75;
  --muted-dark: #676d75;
  --line: rgba(21, 23, 26, 0.12);
  --line-dark: rgba(255, 106, 19, 0.22);
  --header-h: 78px;
  --container: min(1120px, calc(100% - 2rem));
  --radius: 8px;
  --radius-lg: 20px;
  --shadow: 0 18px 42px rgba(92, 57, 30, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 78% 8%,
      rgba(255, 106, 19, 0.16),
      transparent 32%
    ),
    repeating-linear-gradient(
      120deg,
      rgba(255, 106, 19, 0.065) 0 1px,
      transparent 1px 72px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(21, 23, 26, 0.035) 0 1px,
      transparent 1px 132px
    ),
    linear-gradient(180deg, #fff9f1 0%, #f3eee6 48%, #fffaf5 100%);
  background-attachment: fixed;
  line-height: 1.55;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  border-bottom: 1px solid rgba(255, 106, 19, 0.14);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 26px rgba(92, 57, 30, 0.08);
}

.nav-wrap {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  text-decoration: none;
  transform: translateY(0);
  opacity: 1;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

body.hero-brand-visible .brand {
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
}

.brand-plate {
  display: inline-flex;
  align-items: center;
  width: 198px;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-plate img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.05rem;
  color: rgba(21, 23, 26, 0.7);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--orange-deep);
}

.site-nav a[aria-current="page"] {
  color: var(--orange-deep);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav .mobile-nav-action {
  display: none;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.65rem;
}

.header-actions .btn {
  min-height: 42px;
  padding: 0.68rem 1.05rem;
}

.nav-page-title {
  justify-self: center;
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.jobs-page .jobs-mobile-nav {
  display: none;
}

.jobs-page .header-actions {
  justify-self: end;
}

.jobs-page .nav-wrap {
  position: relative;
}

.jobs-page .nav-page-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 106, 19, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.72rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #130701;
  background: linear-gradient(135deg, var(--orange), #ff9a3d);
  box-shadow: 0 12px 26px rgba(255, 106, 19, 0.28);
}

.btn-ghost {
  color: var(--orange-deep);
  border-color: rgba(255, 106, 19, 0.34);
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(86vh - var(--header-h));
  display: grid;
  align-items: center;
  color: var(--text);
  background:
    repeating-linear-gradient(
      120deg,
      rgba(255, 106, 19, 0.07) 0 1px,
      transparent 1px 48px
    ),
    linear-gradient(122deg, #ffffff 0%, #f8f3ec 58%, #ffe4d0 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      108deg,
      transparent 0 58%,
      rgba(255, 106, 19, 0.18) 58% 59%,
      transparent 59%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(21, 23, 26, 0.025) 0 1px,
      transparent 1px 84px
    );
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(430px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(1.8rem, 4vw, 4rem);
  padding: clamp(4.2rem, 7vw, 6.4rem) 0 clamp(3.4rem, 6vw, 5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: 4.45rem;
  font-weight: 500;
  text-transform: uppercase;
}

h1 span,
h2 span {
  display: block;
  color: var(--orange);
  font-weight: 900;
}

.hero h1 span {
  display: inline-block;
  font-family: "Starduster", "Montserrat", Arial, sans-serif;
  font-size: clamp(3rem, 4.35vw, 3.72rem);
  font-weight: 400;
  white-space: nowrap;
}

h2 {
  font-size: 2.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

h3 {
  font-size: 1.16rem;
}

.hero-copy p:not(.eyebrow),
.copy-block p,
.references-copy p,
.editorial-item p {
  color: inherit;
  font-size: 1rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 60ch;
  margin: 1.1rem 0 0;
  color: var(--muted);
}

.hero-copy .lead {
  color: var(--text);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin-top: 1.75rem;
}

.hero-media {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 620px;
  height: clamp(390px, 44vw, 500px);
  margin: 0 0 0 auto;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 3.8rem -0.8rem 2.8rem 2.8rem;
  z-index: 0;
  background:
    linear-gradient(110deg, rgba(255, 106, 19, 0.16), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
  clip-path: polygon(14% 0, 100% 0, 89% 100%, 0 100%);
  pointer-events: none;
}

.market-showcase {
  position: absolute;
  inset: 4% 0 8% 0;
  z-index: 1;
  display: flex;
  align-items: stretch;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-lg);
  background: transparent;
  box-shadow:
    0 0 0 2px rgba(255, 106, 19, 0.16),
    var(--shadow);
}

.market-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  border: 0;
  background: #17120f;
  box-shadow: none;
  color: #ffffff;
  isolation: isolate;
}

.market-panel:not(:first-child) {
  margin-left: -54px;
  clip-path: polygon(46px 0, 100% 0, calc(100% - 46px) 100%, 0 100%);
}

.market-panel:first-child {
  clip-path: polygon(0 0, 100% 0, calc(100% - 46px) 100%, 0 100%);
}

.market-panel:last-child {
  clip-path: polygon(46px 0, 100% 0, 100% 100%, 0 100%);
}

.market-yachting {
  z-index: 1;
}

.market-commercial {
  z-index: 2;
}

.market-residential {
  z-index: 3;
}

.market-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(14, 11, 8, 0.05) 0%,
      rgba(14, 11, 8, 0.84) 100%
    ),
    linear-gradient(90deg, rgba(255, 106, 19, 0.22), transparent 58%);
}

.market-panel + .market-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  bottom: -1px;
  z-index: 4;
  width: 48px;
  pointer-events: none;
  background: url("assets/site/market-divider.svg") center / 100% 100% no-repeat;
  opacity: 0.98;
}

.market-panel + .market-panel::after {
  background:
    linear-gradient(
      180deg,
      rgba(14, 11, 8, 0.05) 0%,
      rgba(14, 11, 8, 0.84) 100%
    ),
    linear-gradient(
      90deg,
      rgba(255, 106, 19, 0.18),
      transparent 38%,
      rgba(255, 106, 19, 0.08) 100%
    );
}

.market-panel:first-child::after {
  background:
    linear-gradient(
      180deg,
      rgba(14, 11, 8, 0.05) 0%,
      rgba(14, 11, 8, 0.84) 100%
    ),
    linear-gradient(90deg, rgba(255, 106, 19, 0.2), transparent 58%);
}

.market-panel:last-child::after {
  background:
    linear-gradient(
      180deg,
      rgba(14, 11, 8, 0.05) 0%,
      rgba(14, 11, 8, 0.84) 100%
    ),
    linear-gradient(90deg, rgba(255, 106, 19, 0.18), transparent 42%);
}

.market-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.98) brightness(0.98);
}

.market-yachting img {
  object-position: center;
}

.market-commercial img {
  object-position: center;
}

.market-residential img {
  object-position: center;
}

.market-panel div {
  position: absolute;
  left: 1.35rem;
  right: 4.9rem;
  bottom: 1.25rem;
  z-index: 3;
}

.market-panel:not(:first-child) div {
  left: 3.4rem;
}

.market-panel:last-child div {
  right: 1.2rem;
}

.market-panel span {
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.market-panel p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  line-height: 1.45;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 19, 0.2);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-image {
  aspect-ratio: 1.55;
}

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

.hero-note {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem 0 0;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 106, 19, 0.3);
  border-bottom: 1px solid rgba(255, 106, 19, 0.2);
  background: transparent;
}

.hero-note span {
  color: var(--orange);
  font-size: 1.55rem;
  font-weight: 900;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.jobs-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.8rem, 8vw, 7rem) 0 clamp(2.4rem, 5vw, 4rem);
  color: var(--text);
  background:
    repeating-linear-gradient(
      120deg,
      rgba(255, 106, 19, 0.07) 0 1px,
      transparent 1px 48px
    ),
    linear-gradient(122deg, #ffffff 0%, #f8f3ec 58%, #ffe4d0 100%);
}

.jobs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      108deg,
      transparent 0 58%,
      rgba(255, 106, 19, 0.18) 58% 59%,
      transparent 59%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(21, 23, 26, 0.025) 0 1px,
      transparent 1px 84px
    );
  pointer-events: none;
}

.jobs-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.72fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: center;
}

.jobs-hero-copy {
  max-width: 760px;
}

.back-to-list-link {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.back-to-list-link:hover,
.back-to-list-link:focus-visible {
  text-decoration: underline;
}

.jobs-hero h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 5.75rem);
  font-weight: 900;
}

.jobs-hero-copy p:not(.eyebrow) {
  max-width: 62ch;
  margin: 1.1rem 0 0;
  color: var(--muted);
}

.jobs-hero-copy .lead {
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 800;
}

.job-brief-card {
  position: relative;
  overflow: hidden;
  padding: 1.45rem;
  border: 1px solid rgba(255, 106, 19, 0.18);
  border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(
      120deg,
      rgba(255, 106, 19, 0.06) 0 1px,
      transparent 1px 42px
    ),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.job-brief-card::after {
  content: "";
  position: absolute;
  right: -1.8rem;
  bottom: -1.6rem;
  width: 150px;
  height: 96px;
  background-image: radial-gradient(
    rgba(255, 106, 19, 0.48) 1.5px,
    transparent 2px
  );
  background-size: 12px 12px;
  opacity: 0.76;
  pointer-events: none;
}

.job-brief-card dl {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  margin: 0;
}

.job-brief-card div {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 106, 19, 0.16);
}

.job-brief-card div:first-child {
  padding-top: 0;
  border-top: 0;
}

.job-brief-card dt {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.job-brief-card dd {
  margin: 0.3rem 0 0;
  color: var(--text);
  font-weight: 700;
}

.jobs-count-card {
  display: grid;
  align-content: center;
  min-height: 280px;
}

.jobs-count-card strong {
  color: var(--orange);
  font-size: clamp(4.5rem, 9vw, 7.25rem);
  line-height: 0.9;
}

.jobs-count-card p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  margin: 1rem 0 0;
  color: var(--muted);
}

.band {
  margin: 1rem 0;
  padding: 0;
  background: transparent;
}

.hero + .band {
  margin-top: 1.2rem;
}

.band > .container {
  padding: 3.2rem 2.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 106, 19, 0.16);
  box-shadow: var(--shadow);
}

.band .container + .container {
  margin-top: 1rem;
}

.band-light {
  background: transparent;
}

.band-light > .container {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.band-dark {
  color: var(--text);
  background: transparent;
}

.band-dark > .container {
  color: var(--text);
  border-color: rgba(255, 106, 19, 0.18);
  background:
    repeating-linear-gradient(
      120deg,
      rgba(255, 106, 19, 0.045) 0 1px,
      transparent 1px 54px
    ),
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 247, 239, 0.92) 100%
    );
}

.section-heading {
  max-width: 780px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 + p,
.section-heading p + h2 {
  margin-top: 0.65rem;
}

.copy-block {
  color: var(--muted);
}

.copy-block.narrow {
  max-width: 880px;
  margin: 1.65rem auto 0;
  text-align: center;
}

.copy-block p,
.references-copy p,
.editorial-item p {
  margin: 0;
}

.copy-block p + p,
.references-copy p + p,
.editorial-item p + p {
  margin-top: 1rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2.4rem;
  align-items: start;
}

.band-dark .copy-block {
  color: var(--muted-dark);
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.editorial-item {
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.8);
}

.editorial-link {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.editorial-link:hover,
.editorial-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 19, 0.34);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(92, 57, 30, 0.12);
}

.editorial-item h3 {
  text-transform: uppercase;
}

.editorial-item p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.editorial-link span {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.editorial-item-wide {
  grid-column: 1 / -1;
}

.product-band {
  padding-bottom: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.product-card {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 19, 0.16);
  border-radius: var(--radius);
  color: #ffffff;
  text-decoration: none;
  background: #17120f;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 19, 0.58);
  box-shadow: 0 20px 46px rgba(92, 57, 30, 0.2);
}

.product-card figure {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: #17120f;
}

.product-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(18, 14, 11, 0.22) 0%,
      rgba(18, 14, 11, 0.82) 72%
    ),
    linear-gradient(90deg, rgba(255, 106, 19, 0.2), transparent 46%);
}

.product-card figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.9) brightness(1.06);
  transition:
    transform 240ms ease,
    filter 240ms ease;
}

.product-card:hover figure > img,
.product-card:focus-visible figure > img {
  transform: scale(1.03);
  filter: saturate(0.88) contrast(0.95) brightness(1.08);
}

.product-card .product-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 100%;
  height: 224px;
  padding: 1.35rem;
}

.product-card p {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.product-card h3 {
  text-transform: uppercase;
}

.product-card .product-kicker {
  margin: 0 0 0.45rem;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card .product-more {
  display: inline-flex;
  align-self: end;
  margin-top: 1rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-mark {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  width: 96px;
  height: 72px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  pointer-events: none;
}

.product-logo {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
  object-position: left top;
  filter: drop-shadow(0 9px 12px rgba(0, 0, 0, 0.35))
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.8));
}

.product-mark-pack .product-logo {
  width: 78px;
  height: 88px;
  transform: translate(-12px, -12px);
}

.product-mark-nemo .product-logo {
  width: 88px;
  height: 88px;
  transform: translate(-11px, -27px);
}

.product-mark-mestra .product-logo {
  width: 84px;
  height: 70px;
  transform: translate(-10px, -9px);
}

.product-wordmark {
  position: relative;
  display: inline-flex;
  gap: 0.22rem;
  margin: 0;
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 400;
  text-transform: uppercase;
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.42),
    0 8px 12px rgba(0, 0, 0, 0.25),
    0 0 7px rgba(255, 255, 255, 0.72),
    0 0 18px rgba(255, 255, 255, 0.3);
}

.product-wordmark span,
.product-wordmark strong {
  display: inline;
  margin: 0;
  color: inherit;
  font-weight: 400;
}

.product-wordmark strong {
  color: var(--orange);
  font-weight: 700;
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.42),
    0 0 7px rgba(255, 106, 19, 0.82),
    0 0 16px rgba(255, 106, 19, 0.46);
}

.product-technical {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 106, 19, 0.18) 0 1px,
      transparent 1px 18px
    ),
    linear-gradient(135deg, #fffaf5, #f3e9de);
}

.product-technical span {
  margin: 0;
  color: var(--orange);
  font-family: "Starduster", "Montserrat", Arial, sans-serif;
  font-size: 2.5rem;
}

.jobs-intro {
  margin-top: 1.2rem;
}

.job-opening .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 0.9rem auto 0;
  color: var(--muted);
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.6rem;
}

.job-meta span {
  border: 1px solid rgba(255, 106, 19, 0.2);
  border-radius: 999px;
  padding: 0.48rem 0.75rem;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
}

.job-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.job-detail {
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.job-detail h3,
.job-offer h3 {
  text-transform: uppercase;
}

.job-detail ul {
  display: grid;
  gap: 0.72rem;
  margin: 1rem 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.job-detail li {
  position: relative;
  padding-left: 1rem;
}

.job-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--orange);
}

.job-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.3rem;
  align-items: center;
  margin-top: 0.9rem;
  padding: 1.45rem;
  border: 1px solid rgba(255, 106, 19, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(
      112deg,
      rgba(255, 255, 255, 0.86),
      rgba(255, 240, 226, 0.9)
    ),
    rgba(255, 255, 255, 0.9);
}

.job-offer p:not(.eyebrow) {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.job-offer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.jobs-list-panel {
  overflow: hidden;
}

.jobs-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2rem;
}

.jobs-list-grid:has(.job-card:only-child) {
  grid-template-columns: minmax(0, 560px);
}

.job-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto auto;
  min-height: 330px;
  padding: 1.45rem;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 19, 0.16);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 244, 234, 0.9)
    ),
    rgba(255, 255, 255, 0.9);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.job-card::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  bottom: -1.8rem;
  width: 190px;
  height: 112px;
  background-image: radial-gradient(
    rgba(255, 106, 19, 0.42) 1.5px,
    transparent 2px
  );
  background-size: 12px 12px;
  opacity: 0.7;
  pointer-events: none;
}

.job-card:hover,
.job-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 19, 0.42);
  box-shadow: 0 20px 46px rgba(92, 57, 30, 0.16);
}

.job-card h3 {
  font-size: 1.65rem;
  text-transform: uppercase;
}

.job-card p:not(.eyebrow) {
  max-width: 44rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.job-card-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.3rem;
}

.job-card-meta span {
  border: 1px solid rgba(255, 106, 19, 0.2);
  border-radius: 999px;
  padding: 0.4rem 0.65rem;
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 800;
}

.job-card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-top: 1.15rem;
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.references-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.references-copy {
  color: var(--muted);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.testimonial {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 34px rgba(15, 16, 18, 0.07);
  cursor: pointer;
}

.testimonial[open] {
  border-color: rgba(255, 106, 19, 0.35);
}

.testimonial summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.15rem;
  color: var(--text);
  font-weight: 500;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem 0.9rem;
  align-items: start;
}

.testimonial summary::-webkit-details-marker {
  display: none;
}

.testimonial summary::after {
  content: "more...";
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  color: rgba(239, 79, 0, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: lowercase;
}

.testimonial[open] summary::after {
  content: "less";
}

.testimonial-name {
  grid-column: 1;
  grid-row: 1;
  color: var(--orange-deep);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial-preview {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.testimonial[open] .testimonial-preview {
  display: none;
}

.testimonial blockquote {
  margin: 0;
  padding: 0 1.15rem 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.band-contact {
  color: var(--text);
  background: transparent;
}

.band-contact > .container {
  color: var(--text);
  border-color: rgba(255, 106, 19, 0.24);
  background:
    repeating-linear-gradient(
      120deg,
      rgba(255, 106, 19, 0.055) 0 1px,
      transparent 1px 52px
    ),
    linear-gradient(
      132deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 247, 239, 0.94) 100%
    );
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 2rem;
  align-items: start;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact-grid article,
.contact-card {
  min-height: 128px;
  padding: 1.2rem;
  border: 1px solid rgba(255, 106, 19, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 19, 0.45);
  background: rgba(255, 255, 255, 0.96);
}

.contact-grid h3 {
  color: var(--orange);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.contact-grid p {
  margin: 0.72rem 0 0;
  color: var(--muted);
}

.contact-grid a {
  text-decoration: none;
}

.contact-grid a:hover,
.contact-grid a:focus-visible {
  color: var(--orange-deep);
}

.socials {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  padding-top: 0.4rem;
}

.socials span {
  color: var(--muted);
  font-weight: 800;
}

.socials a {
  border: 1px solid rgba(255, 106, 19, 0.24);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}

.site-footer {
  padding: 0 0 1.2rem;
  background: transparent;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.footer-wrap img {
  width: 190px;
  height: auto;
}

.footer-wrap p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

@media (max-width: 1080px) {
  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .nav-wrap {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 1rem;
    min-width: 250px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 0.4rem;
    border: 1px solid rgba(255, 106, 19, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.8rem;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .mobile-nav-action {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .jobs-page .nav-wrap {
    grid-template-columns: auto 1fr auto;
  }

  .jobs-page .nav-toggle {
    grid-column: 3;
  }

  .jobs-page .nav-page-title {
    display: none;
  }

  .jobs-page .jobs-mobile-nav {
    display: grid;
  }

  .hero-layout,
  .jobs-hero-layout,
  .split-layout,
  .references-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero h1 span {
    font-size: clamp(3rem, 7vw, 3.55rem);
  }

  .jobs-hero h1 {
    max-width: 12ch;
  }

  .hero-media {
    height: 390px;
    max-width: 720px;
    margin: 1.1rem auto 0;
  }

  .market-showcase {
    inset: 3% 0 8% 0;
    min-height: 0;
  }

  .market-panel div {
    left: 1.05rem;
    right: 4.2rem;
  }

  .market-panel:not(:first-child) div {
    left: 3rem;
  }

  .market-panel:last-child div {
    right: 0.9rem;
  }

  .market-panel p {
    font-size: 0.78rem;
  }

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

@media (max-width: 760px) {
  :root {
    --container: min(1120px, calc(100% - 1.25rem));
    --header-h: 70px;
  }

  .brand-plate {
    width: 176px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding: 3rem 0 2.5rem;
  }

  .hero-copy,
  .jobs-hero-copy,
  .section-heading,
  .copy-block.narrow {
    text-align: center;
  }

  h1 {
    font-size: 2.65rem;
  }

  .hero h1 span {
    font-size: clamp(2.2rem, 11vw, 2.85rem);
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-copy p:not(.eyebrow),
  .jobs-hero-copy p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-note {
    grid-template-columns: 1fr;
    margin: 1.6rem auto 0;
    text-align: center;
  }

  .hero-media {
    height: auto;
    margin-top: 2rem;
  }

  .hero-media::before {
    display: none;
  }

  .market-showcase {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    display: grid;
    gap: 0.7rem;
    min-height: 0;
  }

  .market-panel,
  .market-panel:first-child,
  .market-panel:not(:first-child) {
    min-height: 170px;
    margin-left: 0;
    padding-left: 0;
    transform: none;
    clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
  }

  .market-panel + .market-panel::before {
    display: none;
  }

  .market-panel div,
  .market-panel:not(:first-child) div {
    left: 1.2rem;
    right: 1.2rem;
  }

  .band {
    margin: 0.8rem 0;
    padding: 0;
  }

  .band > .container {
    padding: 2rem 1.2rem;
    border-radius: 16px;
  }

  .editorial-grid,
  .job-detail-grid,
  .jobs-list-grid,
  .product-grid,
  .testimonials,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .editorial-item-wide {
    grid-column: auto;
  }

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

  .job-offer {
    grid-template-columns: 1fr;
  }

  .job-offer .btn {
    justify-self: start;
  }

  .job-offer-actions {
    justify-content: flex-start;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
}
