/* Hallmark · macrostructure: Long Document · tone: confident editorial craft · anchor hue: uniform yellow
 * Pre-emit critique: P5 H5 E5 S5 R5 V5 — source photography stays complete, proof is attributed, and conversion copy stays factual.
 */
@import url("tokens.css?v=cms-v4");

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  overflow-x: clip;
}

html {
  background: var(--color-paper);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a:active {
  opacity: 0.78;
}

a[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  pointer-events: none;
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled,
input:disabled,
textarea:disabled,
select:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

::selection {
  background: var(--color-yellow);
  color: var(--color-navy-deep);
}

:focus-visible {
  outline: var(--focus-ring-width) solid var(--color-focus);
  outline-offset: var(--focus-ring-offset);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: var(--space-sm);
  left: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  transform: translateY(-160%);
  background: var(--color-yellow);
  color: var(--color-navy-deep);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.skip-link:hover {
  background: var(--color-yellow-strong);
}

.container {
  width: min(calc(100% - clamp(2rem, 6vw, 6rem)), var(--site-width));
  margin-inline: auto;
}

.section {
  padding-block: clamp(var(--space-3xl), 8vw, var(--space-5xl));
}

.section-compact {
  padding-block: clamp(var(--space-2xl), 5vw, var(--space-4xl));
}

.section-rule {
  border-top: var(--rule-thin) solid var(--color-line);
}

.utility-bar {
  background: var(--color-navy-deep);
  color: var(--color-white);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: 0.03em;
}

.utility-inner {
  display: flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.utility-inner p {
  margin: 0;
}

.utility-inner a {
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: var(--underline-offset);
}

.utility-inner a:hover {
  color: var(--color-yellow);
}

.site-header {
  position: relative;
  z-index: 30;
  border-bottom: var(--rule-thin) solid var(--color-line);
  background: var(--color-paper);
}

.header-inner {
  display: grid;
  min-height: 5.5rem;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  gap: clamp(var(--space-lg), 3vw, var(--space-2xl));
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: var(--space-sm);
}

.brand:hover .brand-copy strong {
  color: var(--color-navy);
}

.brand-mark {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  place-items: center;
  border: var(--rule-strong) solid var(--color-navy);
  background: var(--color-yellow);
  color: var(--color-navy-deep);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.05;
}

.brand-copy strong {
  overflow-wrap: break-word;
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.brand-copy small {
  margin-top: var(--space-2xs);
  color: var(--color-muted);
  font-family: var(--font-label);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.primary-nav {
  justify-self: end;
}

.nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(var(--space-sm), 1.4vw, var(--space-lg));
  list-style: none;
}

.nav-list > li > a,
.nav-dropdown summary {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  border-bottom: var(--rule-strong) solid transparent;
  font-size: var(--text-sm);
  font-weight: 700;
  white-space: nowrap;
}

.nav-dropdown summary:active {
  opacity: 0.78;
}

.nav-list > li > a:hover,
.nav-dropdown summary:hover,
.nav-dropdown summary:focus-visible,
.nav-list > li > a[aria-current="page"],
.nav-dropdown.is-current > summary {
  border-bottom-color: var(--color-yellow-strong);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  gap: var(--space-xs);
  cursor: pointer;
  list-style: none;
}

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

.nav-dropdown summary::after {
  width: 0.45rem;
  height: 0.45rem;
  border-right: var(--rule-thin) solid currentColor;
  border-bottom: var(--rule-thin) solid currentColor;
  content: "";
  transform: translateY(-0.15rem) rotate(45deg);
}

.nav-dropdown[open] summary::after {
  transform: translateY(0.1rem) rotate(225deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + var(--space-xs));
  left: 0;
  display: grid;
  width: 17rem;
  border: var(--rule-thin) solid var(--color-line-dark);
  background: var(--color-paper);
  box-shadow: 0 1rem 2.5rem var(--color-shadow);
}

.nav-dropdown-panel a {
  padding: var(--space-sm) var(--space-md);
  border-bottom: var(--rule-thin) solid var(--color-line);
  font-size: var(--text-sm);
  font-weight: 700;
  white-space: nowrap;
}

.nav-dropdown-panel a:last-child {
  border-bottom: 0;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a[aria-current="page"] {
  background: var(--color-yellow-soft);
}

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

.menu-button {
  display: none;
  min-width: 4.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: var(--rule-thin) solid var(--color-navy);
  background: var(--color-paper);
  font-size: var(--text-sm);
  font-weight: 800;
}

.menu-button:hover,
.menu-button:focus-visible {
  background: var(--color-yellow-soft);
}

.menu-button:active {
  background: var(--color-yellow);
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  border: var(--rule-thin) solid var(--color-navy-deep);
  border-radius: var(--radius-sm);
  background: var(--color-navy-deep);
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.button:hover,
.button.is-hover {
  transform: translateY(-1px);
}

.button:active,
.button.is-active {
  transform: translateY(1px);
}

.button-yellow {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-accent-ink);
}

.button-outline {
  background: transparent;
  color: var(--color-navy-deep);
}

.button-light {
  border-color: var(--color-white);
  background: var(--color-white);
  color: var(--color-navy-deep);
}

.button.is-loading {
  opacity: 0.68;
  pointer-events: none;
}

.button.is-success {
  border-color: var(--color-success);
  background: var(--color-success);
}

.button.is-error {
  border-color: var(--color-error);
  background: var(--color-error);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  border-bottom: var(--rule-thin) solid currentColor;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--color-navy);
}

.text-link:active {
  color: var(--color-navy);
}

.button[aria-disabled="true"],
.text-link[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  pointer-events: none;
}

.breadcrumbs {
  display: flex;
  margin: 0;
  padding: var(--space-lg) 0 0;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-muted);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  list-style: none;
}

.breadcrumbs a {
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: var(--underline-offset);
}

.breadcrumbs a:hover {
  color: var(--color-navy);
}

.breadcrumbs li:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 var(--space-md);
  color: var(--color-navy);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  min-width: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  overflow-wrap: break-word;
  word-break: normal;
}

h1 {
  font-size: var(--text-display-small);
  line-height: 1.08;
}

h2 {
  font-size: var(--text-2xl);
  line-height: 1.14;
}

h3 {
  font-size: var(--text-xl);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.lead {
  max-width: var(--measure-copy);
  margin: var(--space-xl) 0 0;
  color: var(--color-ink-soft);
  font-size: var(--text-lg);
}

.section-head {
  max-width: var(--measure-copy);
  margin-bottom: clamp(var(--space-2xl), 5vw, var(--space-3xl));
}

.section-head h2 {
  max-width: 20ch;
  margin-top: var(--space-sm);
}

.section-head > p:not(.eyebrow) {
  max-width: var(--measure-narrow);
  margin: var(--space-md) 0 0;
  color: var(--color-ink-soft);
}

.section-head.text-center {
  margin-inline: auto;
}

.section-head.text-center h2,
.section-head.text-center > p:not(.eyebrow) {
  margin-inline: auto;
}

.home-hero {
  display: grid;
  width: min(100%, var(--site-wide));
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  border-bottom: var(--rule-thin) solid var(--color-line);
}

.home-hero-copy {
  display: flex;
  min-width: 0;
  padding: clamp(var(--space-2xl), 4vw, var(--space-3xl));
  flex-direction: column;
  justify-content: center;
}

.home-hero-copy h1,
.home-hero-copy h2 {
  max-width: 13ch;
  font-size: var(--text-display-small);
}

.hero-actions {
  display: flex;
  margin-top: var(--space-2xl);
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero-facts {
  display: grid;
  margin: auto 0 0;
  padding: var(--space-xl) 0 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: var(--rule-thin) solid var(--color-line);
  gap: var(--space-lg);
}

.hero-facts div {
  min-width: 0;
}

.hero-facts dt {
  color: var(--color-muted);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  text-transform: uppercase;
}

.hero-facts dd {
  margin: var(--space-xs) 0 0;
  font-size: var(--text-sm);
  font-weight: 800;
  line-height: 1.35;
}

.home-hero-media {
  align-self: start;
  margin: 0;
  overflow: hidden;
  background: var(--color-navy-deep);
}

.home-hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
}

.home-hero-visual picture {
  display: block;
}

.home-hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.fabric-stage {
  position: absolute;
  z-index: 2;
  right: clamp(var(--space-md), 3vw, var(--space-xl));
  bottom: clamp(var(--space-md), 3vw, var(--space-xl));
  width: clamp(11rem, 38%, 19rem);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: var(--rule-thin) solid var(--color-paper-dark);
  background: var(--color-navy-deep);
  box-shadow: 0 1.1rem 2.5rem var(--color-shadow);
  color: var(--color-paper);
  pointer-events: none;
}

.fabric-stage-fallback,
.fabric-stage canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fabric-stage-fallback {
  background-color: var(--color-navy);
  background-image:
    repeating-linear-gradient(0deg, transparent 0 1.35rem, var(--color-yellow) 1.35rem 1.48rem),
    repeating-linear-gradient(90deg, transparent 0 1.35rem, var(--color-paper-dark) 1.35rem 1.48rem);
  opacity: 0.7;
  transition: opacity var(--dur-base) var(--ease-out);
}

.fabric-stage canvas {
  display: block;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}

.fabric-stage.is-enhanced canvas {
  opacity: 1;
}

.fabric-stage.is-enhanced .fabric-stage-fallback {
  opacity: 0;
}

.fabric-stage-label {
  position: absolute;
  z-index: 3;
  right: var(--space-sm);
  bottom: var(--space-sm);
  padding: var(--space-2xs) var(--space-xs);
  border: var(--rule-thin) solid currentColor;
  background: var(--color-navy-deep);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-transform: uppercase;
}

.photo-caption {
  display: flex;
  padding: var(--space-sm) var(--space-md);
  justify-content: space-between;
  gap: var(--space-md);
  border-top: var(--rule-thin) solid var(--color-line-dark);
  background: var(--color-paper);
  color: var(--color-navy-deep);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  line-height: 1.35;
}

.service-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--color-yellow);
}

.service-ribbon span {
  min-width: 0;
  padding: var(--space-md) var(--space-lg);
  border-right: var(--rule-thin) solid var(--color-navy-deep);
  font-size: var(--text-sm);
  font-weight: 800;
  text-align: center;
}

.service-ribbon span:last-child {
  border-right: 0;
}

.service-index {
  border-top: var(--rule-strong) solid var(--color-navy-deep);
}

.service-link {
  display: grid;
  min-height: 8.25rem;
  padding: var(--space-xl) 0;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.4fr) minmax(10rem, 0.7fr);
  align-items: center;
  border-bottom: var(--rule-thin) solid var(--color-line-dark);
  gap: var(--space-xl);
}

.service-link:hover h3 {
  transform: translateX(var(--space-xs));
}

.service-link small {
  color: var(--color-muted);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-link h3 {
  transition: transform var(--dur-fast) var(--ease-out);
}

.service-link p {
  margin: 0;
  color: var(--color-ink-soft);
}

.service-link .service-action {
  justify-self: end;
  font-weight: 800;
  white-space: nowrap;
}

.split-story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(var(--space-xl), 7vw, var(--space-4xl));
  align-items: center;
}

.split-story-reverse .story-copy {
  order: 2;
}

.story-copy p:not(.eyebrow) {
  max-width: var(--measure-narrow);
  margin: var(--space-xl) 0 0;
  color: var(--color-ink-soft);
  font-size: var(--text-lg);
}

.story-copy .text-link {
  margin-top: var(--space-xl);
}

.media-frame {
  position: relative;
  display: grid;
  min-width: 0;
  margin: 0;
  grid-template-rows: auto auto;
  overflow: hidden;
  border: var(--rule-thin) solid var(--color-line-dark);
  background: var(--color-paper-deep);
}

.media-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.media-frame figcaption {
  padding: var(--space-sm) var(--space-md);
  border-top: var(--rule-thin) solid var(--color-line-dark);
  color: var(--color-muted);
  font-family: var(--font-label);
  font-size: var(--text-xs);
}

.institution-band,
.dark-section {
  background: var(--color-navy-deep);
  color: var(--color-white);
}

.institution-band h2,
.dark-section h2,
.dark-section h3 {
  color: var(--color-white);
}

.institution-band .eyebrow,
.dark-section .eyebrow {
  color: var(--color-yellow);
}

.institution-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(var(--space-2xl), 8vw, var(--space-5xl));
  align-items: start;
}

.institution-grid .lead {
  color: var(--color-paper-dark);
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: var(--rule-thin) solid var(--color-line-dark);
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  padding: var(--space-xl) 0;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  border-bottom: var(--rule-thin) solid var(--color-line-dark);
  gap: var(--space-lg);
  counter-increment: process;
}

.process-list li::before {
  color: var(--color-yellow);
  content: counter(process, decimal-leading-zero);
  font-family: var(--font-label);
  font-weight: 800;
}

.process-list strong {
  display: block;
  font-size: var(--text-lg);
}

.process-list p {
  margin: var(--space-xs) 0 0;
  color: var(--color-paper-dark);
}

.proof-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  border-top: var(--rule-strong) solid var(--color-navy-deep);
  border-bottom: var(--rule-thin) solid var(--color-line-dark);
}

.proof-score {
  display: grid;
  padding: var(--space-2xl);
  place-items: center;
  border-right: var(--rule-thin) solid var(--color-line-dark);
  background: var(--color-yellow);
  text-align: center;
}

.proof-score strong {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  line-height: 1;
}

.proof-score span {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
}

.proof-copy {
  padding: var(--space-2xl);
}

.proof-copy p {
  max-width: var(--measure-copy);
  margin: 0;
  font-size: var(--text-lg);
}

.proof-copy small {
  display: block;
  margin-top: var(--space-md);
  color: var(--color-muted);
}

.reviews-ledger {
  border-top: var(--rule-strong) solid var(--color-navy-deep);
}

.reviews-intro {
  display: grid;
  grid-template-columns: minmax(13rem, 0.55fr) minmax(0, 1.45fr);
  border-bottom: var(--rule-thin) solid var(--color-line-dark);
}

.reviews-score {
  display: grid;
  padding: var(--space-2xl);
  align-content: center;
  border-right: var(--rule-thin) solid var(--color-line-dark);
  background: var(--color-yellow);
}

.reviews-score strong {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  line-height: 1;
}

.reviews-score span {
  margin-top: var(--space-xs);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
}

.reviews-copy {
  padding: var(--space-2xl);
}

.reviews-copy h2 {
  max-width: 15ch;
}

.reviews-copy p {
  max-width: var(--measure-copy);
  margin: var(--space-md) 0 0;
  color: var(--color-ink-soft);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: var(--rule-thin) solid var(--color-line-dark);
}

.review-card {
  display: flex;
  min-width: 0;
  min-height: 20rem;
  padding: var(--space-xl);
  flex-direction: column;
  border-right: var(--rule-thin) solid var(--color-line-dark);
  border-bottom: var(--rule-thin) solid var(--color-line-dark);
  background: var(--color-paper);
}

.review-stars {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-label);
  font-size: var(--text-sm);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.review-card blockquote {
  margin: var(--space-xl) 0;
  color: var(--color-navy-deep);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.35;
}

.review-card footer {
  display: grid;
  margin-top: auto;
  gap: var(--space-2xs);
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.review-card footer a {
  width: fit-content;
  color: var(--color-navy-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: var(--underline-offset);
}

.review-card footer a:hover,
.review-card footer a:focus-visible {
  color: var(--color-navy);
}

.reviews-actions {
  display: flex;
  padding-top: var(--space-xl);
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.reviews-actions p {
  max-width: var(--measure-copy);
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.page-hero {
  padding-block: clamp(var(--space-3xl), 9vw, var(--space-5xl));
  border-bottom: var(--rule-thin) solid var(--color-line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  gap: clamp(var(--space-xl), 8vw, var(--space-5xl));
  align-items: end;
}

.page-hero h1 {
  max-width: 13ch;
}

.page-hero-note {
  padding-top: var(--space-xl);
  border-top: var(--rule-strong) solid var(--color-yellow-strong);
}

.page-hero-note p {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: var(--text-lg);
}

.page-hero-dark {
  background: var(--color-navy-deep);
  color: var(--color-white);
}

.page-hero-dark h1,
.page-hero-dark .eyebrow {
  color: var(--color-white);
}

.page-hero-dark .page-hero-note p {
  color: var(--color-paper-dark);
}

.wide-photo {
  position: relative;
  display: grid;
  width: min(100%, var(--site-wide));
  margin-inline: auto;
  place-items: center;
  overflow: hidden;
  background: var(--color-navy-deep);
}

.wide-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.wide-photo-product {
  padding-block: clamp(var(--space-lg), 4vw, var(--space-2xl)) 0;
}

.wide-photo-product img {
  width: auto;
  max-width: min(92vw, 52rem);
  max-height: min(72vh, 46rem);
}

.wide-photo figcaption {
  width: 100%;
  padding: var(--space-sm) clamp(var(--space-md), 4vw, var(--space-2xl));
  background: var(--color-navy-deep);
  color: var(--color-paper-dark);
  font-family: var(--font-label);
  font-size: var(--text-xs);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(13rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(var(--space-2xl), 8vw, var(--space-5xl));
  align-items: start;
}

.service-aside {
  position: sticky;
  top: var(--space-xl);
  border-top: var(--rule-strong) solid var(--color-navy-deep);
}

.service-aside a,
.service-aside span {
  display: block;
  padding: var(--space-sm) 0;
  border-bottom: var(--rule-thin) solid var(--color-line);
  color: var(--color-ink-soft);
  font-size: var(--text-sm);
}

.service-aside a {
  font-weight: 800;
}

.service-body > p:first-of-type {
  max-width: var(--measure-copy);
  margin: var(--space-xl) 0 0;
  font-size: var(--text-lg);
}

.product-ledger {
  margin-top: var(--space-3xl);
  border-top: var(--rule-strong) solid var(--color-navy-deep);
}

.product-item {
  display: grid;
  min-height: 7.5rem;
  padding: var(--space-lg) 0;
  grid-template-columns: minmax(10rem, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  border-bottom: var(--rule-thin) solid var(--color-line-dark);
  gap: var(--space-xl);
}

.product-item p {
  margin: 0;
  color: var(--color-ink-soft);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: var(--rule-thin) solid var(--color-line-dark);
  border-left: var(--rule-thin) solid var(--color-line-dark);
}

.fact-item {
  min-width: 0;
  padding: clamp(var(--space-lg), 4vw, var(--space-2xl));
  border-right: var(--rule-thin) solid var(--color-line-dark);
  border-bottom: var(--rule-thin) solid var(--color-line-dark);
}

.fact-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1.1;
}

.fact-item p {
  margin: var(--space-sm) 0 0;
  color: var(--color-ink-soft);
}

.quote-panel {
  display: grid;
  padding: clamp(var(--space-xl), 5vw, var(--space-3xl));
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  border: var(--rule-strong) solid var(--color-navy-deep);
  background: var(--color-yellow-soft);
  gap: var(--space-2xl);
}

.quote-panel h2 {
  font-size: var(--text-xl);
}

.quote-panel p {
  max-width: var(--measure-copy);
  margin: var(--space-sm) 0 0;
  color: var(--color-ink-soft);
}

.pricing-ledger {
  border-top: var(--rule-strong) solid var(--color-navy-deep);
}

.pricing-row {
  display: grid;
  padding: var(--space-xl) 0;
  grid-template-columns: minmax(11rem, 0.75fr) minmax(12rem, 0.75fr) minmax(0, 1.5fr);
  align-items: start;
  border-bottom: var(--rule-thin) solid var(--color-line-dark);
  gap: var(--space-xl);
}

.pricing-row strong {
  color: var(--color-navy);
}

.pricing-row p {
  margin: 0;
  color: var(--color-ink-soft);
}

.variable-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: var(--rule-thin) solid var(--color-line-dark);
  border-left: var(--rule-thin) solid var(--color-line-dark);
}

.variable-list article {
  padding: var(--space-xl);
  border-right: var(--rule-thin) solid var(--color-line-dark);
  border-bottom: var(--rule-thin) solid var(--color-line-dark);
}

.variable-list p {
  margin: var(--space-sm) 0 0;
  color: var(--color-ink-soft);
}

.faq-list {
  border-top: var(--rule-strong) solid var(--color-navy-deep);
}

.faq-list details {
  border-bottom: var(--rule-thin) solid var(--color-line-dark);
}

.faq-list summary {
  display: grid;
  min-height: 4.75rem;
  padding: var(--space-lg) 0;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  gap: var(--space-lg);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--color-navy);
  content: "+";
  font-family: var(--font-body);
  font-size: var(--text-xl);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: var(--measure-copy);
  margin: 0;
  padding: 0 0 var(--space-xl);
  color: var(--color-ink-soft);
}

.contact-sheet {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  border: var(--rule-thin) solid var(--color-line-dark);
}

.contact-actions {
  padding: clamp(var(--space-xl), 5vw, var(--space-3xl));
  background: var(--color-navy-deep);
  color: var(--color-white);
}

.contact-actions h2 {
  color: var(--color-white);
}

.contact-actions > p {
  color: var(--color-paper-dark);
}

.contact-actions .button {
  margin-top: var(--space-xl);
}

.contact-ledger {
  margin: 0;
}

.contact-ledger div {
  display: grid;
  padding: var(--space-xl);
  grid-template-columns: minmax(7rem, 0.35fr) minmax(0, 0.65fr);
  border-bottom: var(--rule-thin) solid var(--color-line);
  gap: var(--space-lg);
}

.contact-ledger div:last-child {
  border-bottom: 0;
}

.contact-ledger dt {
  color: var(--color-muted);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
}

.contact-ledger dd {
  margin: 0;
  font-weight: 700;
}

.contact-ledger a {
  text-decoration: underline;
  text-underline-offset: var(--underline-offset);
}

.quote-form {
  margin-top: var(--space-2xl);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
}

.field {
  display: grid;
  gap: var(--space-xs);
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 800;
}

.required-label {
  color: var(--color-error);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.field small {
  color: var(--color-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: var(--space-sm) var(--space-md);
  border: var(--rule-thin) solid var(--color-line-dark);
  border-radius: var(--radius-sm);
  background: var(--color-white);
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--color-navy);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-focus);
}

.field [aria-invalid="true"] {
  border-color: var(--color-error);
}

.field .is-valid {
  border-color: var(--color-success);
}

.field-error {
  min-height: 1.2em;
  color: var(--color-error);
  font-size: var(--text-sm);
  font-weight: 700;
}

.form-actions {
  display: flex;
  margin-top: var(--space-xl);
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  font-weight: 700;
}

.form-status.is-success {
  color: var(--color-success);
}

.form-status.is-error {
  color: var(--color-error);
}

.form-help {
  max-width: var(--measure-copy);
  margin: var(--space-lg) 0 0;
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.form-help strong {
  color: var(--color-navy-deep);
}

.location-warning {
  padding: var(--space-lg);
  border-left: var(--rule-strong) solid var(--color-yellow-strong);
  background: var(--color-yellow-soft);
}

.location-warning p {
  margin: 0;
}

.location-map-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(var(--space-xl), 6vw, var(--space-4xl));
  align-items: stretch;
}

.location-map-copy {
  display: flex;
  min-width: 0;
  padding-block: var(--space-md);
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-2xl);
}

.location-map-copy h2 {
  max-width: 12ch;
}

.location-map-copy > div > p:not(.eyebrow),
.location-map-actions p {
  max-width: var(--measure-narrow);
  margin: var(--space-lg) 0 0;
  color: var(--color-ink-soft);
}

.location-map-actions {
  display: grid;
  justify-items: start;
}

.location-map {
  min-width: 0;
  overflow: hidden;
  border: var(--rule-thin) solid var(--color-line-dark);
  background: var(--color-navy-wash);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: clamp(22rem, 44vw, 35rem);
  border: 0;
}

.site-footer {
  border-top: var(--rule-strong) solid var(--color-yellow);
  background: var(--color-navy-deep);
  color: var(--color-white);
}

.footer-statement {
  display: grid;
  padding-block: clamp(var(--space-3xl), 8vw, var(--space-5xl));
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.75fr);
  gap: clamp(var(--space-xl), 8vw, var(--space-5xl));
  align-items: end;
}

.footer-statement h2 {
  max-width: 12ch;
  color: var(--color-white);
}

.footer-action p {
  margin: 0 0 var(--space-xl);
  color: var(--color-paper-dark);
}

.footer-columns {
  display: grid;
  padding-block: var(--space-2xl);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-xl);
  border-top: var(--rule-thin) solid var(--color-line-dark);
}

.footer-columns h3 {
  margin: 0 0 var(--space-md);
  color: var(--color-white);
  font-size: var(--text-base);
}

.footer-link-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: var(--space-xs);
  color: var(--color-paper-dark);
  font-size: var(--text-sm);
  list-style: none;
}

.footer-link-list a,
.footer-social-links a {
  width: fit-content;
  border-bottom: var(--rule-thin) solid transparent;
}

.footer-link-list a:hover,
.footer-link-list a:focus-visible,
.footer-social-links a:hover,
.footer-social-links a:focus-visible {
  border-bottom-color: currentColor;
  color: var(--color-yellow);
}

.footer-contact-list li {
  display: grid;
  gap: var(--space-2xs);
}

.footer-contact-list strong {
  color: var(--color-white);
  font-size: var(--text-xs);
  text-transform: uppercase;
}

.footer-social-links {
  display: grid;
  gap: var(--space-sm);
  color: var(--color-paper-dark);
  font-size: var(--text-sm);
}

.footer-ledger {
  display: grid;
  padding-block: var(--space-xl);
  grid-template-columns: 1fr auto auto;
  align-items: center;
  border-top: var(--rule-thin) solid var(--color-line-dark);
  gap: var(--space-xl);
  color: var(--color-paper-dark);
  font-size: var(--text-sm);
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-links a {
  border-bottom: var(--rule-thin) solid currentColor;
  white-space: nowrap;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-yellow);
}

.footer-credits {
  display: grid;
  gap: var(--space-2xs);
}

.footer-credits a {
  width: fit-content;
  border-bottom: var(--rule-thin) solid currentColor;
  color: var(--color-white);
}

.footer-credits a:hover,
.footer-credits a:focus-visible {
  color: var(--color-yellow);
}

.footer-ledger-final {
  grid-template-columns: minmax(0, 1fr);
}

@media (max-width: 960px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .footer-columns {
    grid-template-columns: minmax(0, 1fr);
  }
}

.sticky-whatsapp {
  position: fixed;
  z-index: 80;
  right: var(--space-xl);
  bottom: max(var(--space-xl), env(safe-area-inset-bottom));
  display: inline-flex;
  min-height: 3.25rem;
  padding: var(--space-sm) var(--space-lg);
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  border: var(--rule-thin) solid #08783f;
  border-radius: var(--radius-round);
  background: #128c4a;
  background: var(--color-whatsapp, #128c4a);
  box-shadow: 0 0.75rem 2rem var(--color-shadow);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 800;
  line-height: 1;
  transition: background-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}

.sticky-whatsapp.is-suppressed {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
}

.sticky-whatsapp svg {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.sticky-whatsapp svg path:last-child {
  fill: currentColor;
  stroke: none;
}

.sticky-whatsapp:hover,
.sticky-whatsapp:focus-visible {
  transform: translateY(-1px);
  background-color: #08783f;
  background-color: var(--color-whatsapp-hover, #08783f);
}

.sticky-whatsapp:active {
  transform: translateY(1px);
}

.brand-logo {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.editorial-slider {
  border-bottom: var(--rule-thin) solid var(--color-line);
  background: var(--color-paper);
}

.slider-toolbar {
  display: flex;
  min-height: 4.25rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.hero-slider > .slider-toolbar {
  border-bottom: var(--rule-thin) solid var(--color-line);
}

.slider-toolbar h2 {
  max-width: 18ch;
  margin-top: var(--space-xs);
}

.slider-controls {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-ink-soft);
  font-size: var(--text-sm);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.slider-controls button {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: var(--rule-thin) solid var(--color-navy-deep);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-navy-deep);
  font-size: var(--text-lg);
}

.slider-controls button:hover,
.slider-controls button:focus-visible {
  background: var(--color-yellow);
}

.slider-viewport,
.product-slider-viewport {
  display: grid;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--color-navy) var(--color-paper-dark);
  scrollbar-width: thin;
}

.slider-viewport {
  grid-auto-columns: 100%;
  grid-auto-flow: column;
}

.slider-slide,
.product-slide {
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.product-slider {
  background: var(--color-paper-deep);
}

.product-slider .slider-toolbar {
  margin-bottom: var(--space-2xl);
}

.product-slider-viewport {
  grid-auto-columns: calc((100% - (3 * var(--space-lg))) / 4);
  grid-auto-flow: column;
  gap: var(--space-lg);
  padding-bottom: var(--space-md);
  will-change: scroll-position;
}

.product-slider-viewport.is-marquee {
  scroll-snap-type: none;
}

.product-slide {
  display: grid;
  border: var(--rule-thin) solid var(--color-line-dark);
  background: var(--color-paper);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.product-slide:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--color-shadow);
}

.product-slide-media {
  display: grid;
  min-height: 18rem;
  place-items: center;
  padding: var(--space-md);
  border-bottom: var(--rule-thin) solid var(--color-line);
  background: var(--color-white);
}

.product-slide-media img {
  width: 100%;
  max-height: 24rem;
  object-fit: contain;
}

.product-slide-media > a {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.product-slide-copy {
  display: grid;
  min-height: 19rem;
  padding: var(--space-lg);
  align-content: start;
}

.product-slide-copy small {
  color: var(--color-muted);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-slide-copy h3 {
  margin-top: var(--space-sm);
}

.product-slide-copy > p {
  margin: var(--space-md) 0 0;
  color: var(--color-ink-soft);
}

.product-slide-footer {
  display: grid;
  margin-top: auto;
  padding-top: var(--space-lg);
  gap: var(--space-sm);
  border-top: var(--rule-thin) solid var(--color-line);
}

.product-slide-footer a {
  width: fit-content;
  border-bottom: var(--rule-thin) solid currentColor;
  font-weight: 800;
}

.product-slide-copy > .text-link {
  margin-top: var(--space-md);
}

.product-detail-page {
  min-height: 70vh;
  background: var(--color-paper);
}

.product-breadcrumb {
  display: flex;
  padding-block: var(--space-lg);
  align-items: center;
  gap: var(--space-sm);
  overflow: hidden;
  border-bottom: var(--rule-thin) solid var(--color-line);
  color: var(--color-muted);
  font-size: var(--text-sm);
  white-space: nowrap;
}

.product-breadcrumb a {
  color: var(--color-navy-deep);
  font-weight: 800;
}

.product-breadcrumb span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-detail {
  padding-top: clamp(var(--space-xl), 5vw, var(--space-3xl));
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(20rem, 0.86fr);
  align-items: start;
  gap: clamp(var(--space-2xl), 6vw, var(--space-4xl));
}

.product-media-slider,
.product-detail-copy {
  min-width: 0;
}

.product-media-heading {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.product-media-heading .eyebrow {
  margin: 0;
}

.product-media-viewport {
  display: flex;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  border: var(--rule-thin) solid var(--color-line-dark);
  background: var(--color-white);
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--color-navy) var(--color-paper-dark);
  scrollbar-width: thin;
}

.product-media-slide {
  display: grid;
  min-width: 0;
  margin: 0;
  flex: 0 0 100%;
  grid-template-rows: minmax(24rem, 1fr) auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.product-media-slide > a,
.product-media-slide > picture {
  display: grid;
  min-width: 0;
  padding: clamp(var(--space-sm), 2vw, var(--space-xl));
  place-items: center;
}

.product-media-slide picture {
  width: 100%;
  height: 100%;
}

.product-media-slide img {
  width: 100%;
  height: clamp(28rem, 58vw, 46rem);
  object-fit: contain;
}

.product-media-slide figcaption {
  padding: var(--space-sm) var(--space-md);
  border-top: var(--rule-thin) solid var(--color-line);
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.product-media-empty {
  display: grid;
  min-height: 30rem;
  flex: 0 0 100%;
  place-items: center;
  color: var(--color-muted);
}

.product-media-thumbnails {
  display: grid;
  margin-top: var(--space-sm);
  grid-auto-columns: 5.25rem;
  grid-auto-flow: column;
  justify-content: start;
  gap: var(--space-sm);
  overflow-x: auto;
  padding-bottom: var(--space-xs);
}

.product-media-thumbnails button {
  display: grid;
  width: 5.25rem;
  aspect-ratio: 1;
  padding: var(--space-2xs);
  place-items: center;
  overflow: hidden;
  border: var(--rule-thin) solid var(--color-line-dark);
  border-radius: var(--radius-sm);
  background: var(--color-white);
}

.product-media-thumbnails button[aria-current="true"] {
  border: var(--rule-strong) solid var(--color-yellow-strong);
}

.product-media-thumbnails picture,
.product-media-thumbnails img {
  width: 100%;
  height: 100%;
}

.product-media-thumbnails img {
  object-fit: contain;
}

.product-detail-copy {
  position: sticky;
  top: var(--space-xl);
}

.product-detail-copy h1 {
  max-width: 13ch;
  margin-top: var(--space-sm);
  font-size: clamp(3rem, 5.2vw, 5.75rem);
  line-height: 0.96;
}

.product-detail-copy .lead {
  max-width: var(--measure-narrow);
  margin-top: var(--space-xl);
  color: var(--color-ink-soft);
  font-size: var(--text-lg);
}

.product-description {
  max-width: var(--measure-copy);
  margin-block: var(--space-xl);
}

.product-specifications {
  margin: var(--space-xl) 0 0;
  border-top: var(--rule-thin) solid var(--color-line-dark);
}

.product-specifications > div {
  display: grid;
  padding-block: var(--space-sm);
  grid-template-columns: minmax(7rem, 0.34fr) minmax(0, 0.66fr);
  gap: var(--space-md);
  border-bottom: var(--rule-thin) solid var(--color-line);
}

.product-specifications dt {
  color: var(--color-muted);
  font-size: var(--text-sm);
  font-weight: 800;
}

.product-specifications dd {
  margin: 0;
  overflow-wrap: break-word;
  font-weight: 700;
}

.product-enquiry-panel {
  display: grid;
  margin-top: var(--space-2xl);
  padding: clamp(var(--space-lg), 4vw, var(--space-2xl));
  gap: var(--space-xl);
  background: var(--color-navy-deep);
  color: var(--color-white);
}

.product-enquiry-panel .eyebrow {
  color: var(--color-yellow);
}

.product-enquiry-panel h2 {
  max-width: 17ch;
  margin-top: var(--space-xs);
  color: var(--color-white);
  font-size: var(--text-xl);
}

.product-enquiry-panel p:last-child {
  margin-bottom: 0;
  color: var(--color-paper-dark);
}

.button.product-whatsapp-button {
  width: fit-content;
  border-color: #08783f;
  background: #128c4a;
  color: #fff;
}

.button.product-whatsapp-button:hover,
.button.product-whatsapp-button:focus-visible {
  border-color: #065f33;
  background: #08783f;
  color: #fff;
}

.product-whatsapp-button svg {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.product-whatsapp-button svg path:last-child {
  fill: currentColor;
  stroke: none;
}

.product-back-link {
  display: inline-flex;
  margin-top: var(--space-xl);
}

.team-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1.45fr);
  align-items: end;
  gap: var(--space-sm) clamp(var(--space-xl), 7vw, var(--space-4xl));
}

.team-section-head .eyebrow {
  grid-column: 1 / -1;
}

.team-section-head p:last-child {
  max-width: var(--measure-narrow);
  margin: 0;
  color: var(--color-ink-soft);
}

.team-owner {
  display: grid;
  margin-top: clamp(var(--space-2xl), 6vw, var(--space-4xl));
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: var(--rule-thin) solid var(--color-line-dark);
  background: var(--color-paper);
  color: var(--color-ink);
}

.team-owner-media,
.team-member-media {
  display: grid;
  min-width: 0;
  place-items: center;
  overflow: hidden;
  background: var(--color-navy-wash);
}

.team-owner-media picture,
.team-member-media picture {
  display: block;
  width: 100%;
}

.team-owner-media picture {
  padding: clamp(var(--space-md), 2vw, var(--space-xl));
}

.team-owner-media img {
  width: 100%;
  max-height: 43rem;
  aspect-ratio: 2 / 3;
  object-fit: contain;
}

.team-owner-copy {
  display: grid;
  padding: clamp(var(--space-2xl), 7vw, var(--space-4xl));
  align-content: start;
}

.team-owner-copy h3 {
  max-width: 14ch;
  margin: 0;
  color: var(--color-navy-deep);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
}

.team-owner-copy .eyebrow,
.team-owner-copy .team-role {
  margin: var(--space-xs) 0 0;
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-owner-copy .team-bio {
  max-width: var(--measure-narrow);
  margin: var(--space-lg) 0 0;
  color: var(--color-ink-soft);
  font-size: var(--text-lg);
  line-height: 1.65;
}

.team-grid {
  display: grid;
  margin-top: clamp(var(--space-2xl), 5vw, var(--space-3xl));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xl);
}

.team-grid:not(.team-grid-supporting) {
  margin-top: clamp(var(--space-2xl), 6vw, var(--space-4xl));
}

.team-member {
  display: grid;
  border: var(--rule-thin) solid var(--color-line-dark);
  background: var(--color-paper);
}

.team-member-media picture {
  padding: var(--space-md);
}

.team-member-media img {
  width: 100%;
  max-height: 34rem;
  height: auto;
  object-fit: contain;
}

.team-member-copy {
  padding: var(--space-xl);
  border-top: var(--rule-thin) solid var(--color-line-dark);
}

.team-member-copy h3 {
  margin: 0;
  color: var(--color-navy-deep);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1.2;
}

.team-member-copy .eyebrow,
.team-member-copy .team-role {
  margin: var(--space-2xs) 0 0;
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-member-copy .team-bio {
  margin: var(--space-md) 0 0;
  color: var(--color-ink-soft);
  font-size: var(--text-base);
  line-height: 1.6;
}

.team-member.team-owner {
  border-color: var(--color-line-dark);
  background: var(--color-paper);
  color: var(--color-ink);
}

.team-owner .team-owner-copy .team-bio {
  color: var(--color-ink-soft);
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) max-content;
  }

  .menu-button {
    display: inline-flex;
  }

  .header-actions .button {
    display: none;
  }

  .primary-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    border-top: var(--rule-thin) solid var(--color-line);
  }

  .js .primary-nav {
    display: none;
  }

  .js .site-header.is-open .primary-nav {
    display: block;
  }

  .nav-list {
    display: grid;
    padding: var(--space-sm) 0 var(--space-lg);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 0;
  }

  .nav-list > li > a,
  .nav-dropdown summary {
    width: 100%;
    padding-inline: var(--space-md);
    border-bottom: var(--rule-thin) solid var(--color-line);
  }

  .nav-dropdown {
    grid-column: span 1;
  }

  .nav-dropdown-panel {
    position: static;
    width: auto;
    border: 0;
    box-shadow: none;
  }

  .nav-dropdown-panel a {
    padding-left: var(--space-xl);
    background: var(--color-paper-deep);
  }
}

@media (max-width: 960px) {
  .home-hero,
  .split-story,
  .institution-grid,
  .page-hero-grid,
  .service-layout,
  .contact-sheet,
  .location-map-grid,
  .footer-statement {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-slider-viewport {
    grid-auto-columns: calc((100% - var(--space-lg)) / 2);
  }

  .team-section-head {
    grid-template-columns: minmax(0, 1fr);
  }

  .team-owner {
    grid-template-columns: minmax(0, 1fr);
  }

  .team-owner-media img {
    max-height: 38rem;
  }

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

  .product-detail-copy {
    position: static;
  }

  .product-media-slide img {
    height: clamp(25rem, 92vw, 42rem);
  }

  .home-hero {
    min-height: 0;
  }

  .home-hero-copy {
    min-height: 0;
  }

  .home-hero-media {
    order: -1;
  }

  .split-story-reverse .story-copy {
    order: initial;
  }

  .service-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-aside span,
  .service-aside a {
    padding-right: var(--space-md);
  }

  .quote-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .quote-panel .button {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .utility-inner {
    min-height: 2.75rem;
  }

  .utility-inner p:first-child {
    display: none;
  }

  .header-inner {
    min-height: 4.75rem;
  }

  .brand-copy small {
    display: none;
  }

  .nav-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-dropdown {
    grid-column: auto;
  }

  h1,
  h2,
  h3 {
    line-height: 1.18;
    letter-spacing: -0.015em;
    overflow-wrap: break-word;
    word-break: normal;
  }

  h1 {
    font-size: clamp(2rem, 8.5vw, 3.25rem);
  }

  .home-hero-copy h1,
  .home-hero-copy h2 {
    font-size: clamp(2.15rem, 9vw, 3.4rem);
    line-height: 1.14;
  }

  h2 {
    font-size: clamp(1.6rem, 6.5vw, 2.35rem);
  }

  h3 {
    font-size: clamp(1.2rem, 4.5vw, 1.55rem);
  }

  .home-hero-copy {
    min-height: 0;
    padding-inline: clamp(var(--space-lg), 7vw, var(--space-2xl));
  }

  .hero-facts,
  .service-ribbon,
  .fact-grid,
  .variable-list,
  .form-grid,
  .proof-strip,
  .reviews-intro,
  .reviews-grid,
  .section-head {
    grid-template-columns: minmax(0, 1fr);
  }

  .slider-toolbar {
    align-items: flex-start;
    flex-direction: column;
    padding-block: var(--space-md);
  }

  .hero-slider > .slider-toolbar {
    align-items: center;
    flex-direction: row;
  }

  .product-slider-viewport {
    grid-auto-columns: min(86vw, 22rem);
  }

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

  .team-owner-copy {
    min-height: auto;
    padding: var(--space-xl);
  }

  .hero-facts {
    gap: var(--space-md);
  }

  .service-ribbon span {
    border-right: 0;
    border-bottom: var(--rule-thin) solid var(--color-navy-deep);
  }

  .service-ribbon span:last-child {
    border-bottom: 0;
  }

  .service-link,
  .product-item,
  .pricing-row {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-sm);
  }

  .service-link .service-action {
    justify-self: start;
  }

  .service-aside {
    grid-template-columns: minmax(0, 1fr);
  }

  .proof-score {
    border-right: 0;
    border-bottom: var(--rule-thin) solid var(--color-line-dark);
  }

  .reviews-score {
    border-right: 0;
    border-bottom: var(--rule-thin) solid var(--color-line-dark);
  }

  .review-card {
    min-height: 0;
  }

  .contact-ledger div {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xs);
  }

  .footer-ledger {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  body {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom));
  }

  .sticky-whatsapp {
    right: var(--space-md);
    bottom: max(var(--space-sm), env(safe-area-inset-bottom));
    left: auto;
  }

  .fabric-stage {
    right: var(--space-md);
    bottom: var(--space-md);
    width: clamp(10rem, 42%, 15rem);
  }
}

@media (max-width: 414px) {
  .container {
    width: min(calc(100% - 2rem), var(--site-width));
  }

  .brand-mark {
    width: 2.45rem;
    height: 2.45rem;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .menu-button {
    min-width: 4.25rem;
  }

  .hero-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .form-actions .button {
    width: 100%;
  }

  .product-media-heading {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: var(--space-sm);
  }

  .product-media-slide {
    grid-template-rows: minmax(20rem, 1fr) auto;
  }

  .product-media-slide img {
    height: 105vw;
    max-height: 30rem;
  }

  .product-specifications > div {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-2xs);
  }

  .button.product-whatsapp-button {
    width: 100%;
  }

  .photo-caption {
    flex-direction: column;
  }

  .sticky-whatsapp {
    width: 3.25rem;
    padding-inline: 0;
    border-radius: 50%;
  }

  .sticky-whatsapp span {
    display: none;
  }
}

@media (max-width: 350px) {
  .brand-copy {
    max-width: 10rem;
  }

  .brand-copy strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-button {
    min-width: 4rem;
    padding-inline: var(--space-sm);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .sticky-whatsapp,
  .footer-action,
  .button {
    display: none !important;
  }

  body {
    padding: 0;
    background: var(--color-white);
    color: var(--color-ink);
  }
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: -10px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  line-height: 1;
}
.lightbox-close:hover {
  color: var(--color-yellow, #ffd500);
}

/* Smooth Animations */
.service-index a, .gallery-card, .service-ribbon span {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-index a:hover, .gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.button {
  transition:
    color var(--dur-fast) var(--ease-out),
    background-color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
}
.button:hover {
  transform: translateY(-1px);
}

/* ==========================================================================
   PREMIUM BESPOKE SECTIONS & SCROLL ANIMATIONS
   ========================================================================== */

/* --- Scroll Animations --- */
.reveal-on-scroll,
.reveal-item {
  opacity: 1;
  transform: none;
}

.js .reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.js .reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal-on-scroll,
  .js .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* --- WHY CHOOSE US (Editorial Grid) --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: var(--space-lg);
}

.why-card {
  position: relative;
  display: flex;
  gap: var(--space-md);
  padding: var(--space-xl);
  border: var(--rule-thin) solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-paper);
  box-shadow: 0 4px 16px -4px rgba(23, 40, 63, 0.04);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-navy);
  box-shadow: 0 16px 32px -8px rgba(23, 40, 63, 0.1);
}

.why-num {
  font-family: var(--font-label);
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--color-yellow);
  line-height: 1.4;
  flex: 0 0 auto;
}

.why-body h3 {
  margin: 0 0 var(--space-2xs);
  font-size: var(--text-md);
  color: var(--color-navy-deep);
}

.why-body p {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: var(--text-sm);
  line-height: 1.55;
}

/* --- OUR RECENT WORK (Curated Showcase Grid) --- */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.showcase-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--color-navy-deep);
  text-decoration: none;
  box-shadow: 0 6px 20px -4px rgba(23, 40, 63, 0.12);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card:hover img {
  transform: scale(1.06);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
  background: linear-gradient(180deg, transparent 40%, rgba(15, 26, 42, 0.88) 100%);
  color: #fff;
  transition: background 0.3s ease;
}

.showcase-card:hover .showcase-overlay {
  background: linear-gradient(180deg, transparent 25%, rgba(15, 26, 42, 0.94) 100%);
}

.showcase-tag {
  display: inline-block;
  width: fit-content;
  margin-bottom: var(--space-2xs);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  background: rgba(233, 189, 39, 0.2);
  color: var(--color-yellow);
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.showcase-overlay h3 {
  margin: 0;
  font-size: var(--text-md);
  color: #fff;
}

.showcase-link {
  margin-top: var(--space-2xs);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--dur-fast) var(--ease-out);
}

.showcase-card:hover .showcase-link {
  color: var(--color-yellow);
}

@media (max-width: 900px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .showcase-card {
    aspect-ratio: 16 / 10;
  }
}

/* --- CATALOG / PRODUCT SHOWCASE --- */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.catalog-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-xl);
  border: var(--rule-thin) solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-paper);
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}

.catalog-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-navy);
  box-shadow: 0 14px 28px -6px rgba(23, 40, 63, 0.08);
}

.catalog-card h3 {
  margin: 0 0 var(--space-2xs);
  font-size: var(--text-md);
  color: var(--color-navy-deep);
}

.catalog-card p {
  flex-grow: 1;
  margin: 0 0 var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-ink-soft);
  line-height: 1.45;
}

.catalog-action {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
}

.catalog-card:hover .catalog-action {
  color: var(--color-yellow);
}

@media (max-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

/* --- MANUFACTURING WORKFLOW --- */
.mfg-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-3xl);
  align-items: center;
}

.mfg-visual-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.45);
  border: var(--rule-thin) solid rgba(233, 189, 39, 0.3);
}

.mfg-visual-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.mfg-visual-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
  background: rgba(15, 26, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: var(--rule-thin) solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.mfg-visual-badge strong {
  font-size: var(--text-xs);
  color: var(--color-yellow);
}

.mfg-visual-badge span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.mfg-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mfg-timeline-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  border-bottom: var(--rule-thin) solid rgba(255, 255, 255, 0.08);
}

.mfg-timeline-step:last-child {
  border-bottom: none;
}

.mfg-step-badge {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-round);
  background: var(--color-yellow);
  color: var(--color-navy-deep);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 800;
  flex: 0 0 auto;
}

.mfg-step-content strong {
  display: block;
  font-size: var(--text-sm);
  color: #fff;
  margin-bottom: 0.15rem;
}

.mfg-step-content p {
  margin: 0;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

@media (max-width: 860px) {
  .mfg-container {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* --- CLIENTS SECTION --- */
.client-group {
  margin-bottom: var(--space-lg);
}

.client-group-label {
  display: inline-block;
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.client-badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-sm);
}

.client-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border: var(--rule-thin) solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-paper);
  font-size: var(--text-sm);
  color: var(--color-navy-deep);
  transition: transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}

.client-badge:hover {
  transform: translateY(-2px);
  border-color: var(--color-navy);
  box-shadow: 0 8px 16px -4px rgba(23, 40, 63, 0.06);
}

.client-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: var(--radius-round);
  background: var(--color-yellow);
  flex: 0 0 auto;
}

.client-badge-hotel .client-badge-dot {
  background: var(--color-navy);
}

.client-footnote {
  margin-top: var(--space-xl);
  font-size: var(--text-sm);
  color: var(--color-ink-soft);
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   CINEMATIC FULL-WIDTH BANNER HERO (Matching Reference Design)
   ========================================================================== */
.banner-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3.5rem, 6vw, 5rem);
  overflow: hidden;
  color: #ffffff;
  background: var(--color-navy-deep);
}

.banner-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-hero-bg picture,
.banner-hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
}

.banner-hero-bg img {
  object-fit: cover;
  object-position: center 30%;
}

.banner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 22, 36, 0.96) 0%, rgba(12, 22, 36, 0.88) 50%, rgba(12, 22, 36, 0.58) 100%);
}

.banner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.banner-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 1.5rem;
}

.banner-hero-badge-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 0 8px var(--color-yellow);
}

.banner-hero-title {
  font-size: clamp(2.3rem, 5.2vw, 4.1rem);
  font-weight: 900;
  line-height: 1.12;
  color: #ffffff;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.banner-hero-lead {
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.62;
  max-width: 760px;
  margin: 0 0 2.25rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.banner-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3.25rem;
}

.button-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-sm);
  font-family: var(--font-label);
  font-size: var(--text-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all var(--dur-fast) var(--ease-out);
}

.button-glass:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.button-whatsapp-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-sm);
  font-family: var(--font-label);
  font-size: var(--text-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #128c4a;
  border: 1px solid #0a6c38;
  color: #ffffff !important;
  transition: all var(--dur-fast) var(--ease-out);
}

.button-whatsapp-hero:hover {
  background: #0d733c;
  transform: translateY(-2px);
}

.banner-hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.banner-feat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
}

.banner-feat-item strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
}

.banner-feat-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.banner-feat-index {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  border: var(--rule-thin) solid oklch(82% 0.16 86 / 0.6);
  border-radius: var(--radius-round);
  color: var(--color-yellow) !important;
  font-family: var(--font-label);
  font-size: var(--text-xs) !important;
  font-weight: 800;
}

.banner-hero .fabric-stage {
  position: absolute;
  left: calc(100% + var(--space-lg));
  right: auto;
  bottom: 0;
  width: clamp(10rem, 16vw, 13rem);
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(233, 189, 39, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  z-index: 5;
  background: var(--color-navy-deep);
}

@media (max-width: 1180px) {
  .banner-hero .fabric-stage {
    display: none;
  }
}

@media (max-width: 900px) {
  .banner-hero {
    min-height: 0;
    padding-block: var(--space-xl);
  }

  .banner-hero-badge {
    margin-bottom: var(--space-md);
    padding: var(--space-2xs) var(--space-md);
  }

  .banner-hero-title {
    margin-bottom: var(--space-md);
  }

  .banner-hero-lead {
    margin-bottom: var(--space-lg);
    font-size: var(--text-base);
    line-height: 1.5;
  }

  .banner-hero-actions {
    margin-bottom: var(--space-xl);
    gap: var(--space-sm);
  }

  .banner-hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
    padding-top: var(--space-lg);
  }

  .banner-feat-item {
    align-items: flex-start;
    gap: var(--space-xs);
  }

}

/* ==========================================================================
   CLIENT DETAIL CARDS (For Dedicated /clients Page)
   ========================================================================== */
.client-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: var(--space-lg);
}

.client-detail-card {
  display: flex;
  gap: 1.25rem;
  padding: var(--space-xl);
  border: var(--rule-thin) solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-paper);
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.client-detail-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-navy);
  box-shadow: 0 12px 28px -6px rgba(23, 40, 63, 0.09);
}

.client-detail-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: var(--rule-thin) solid var(--color-line);
  border-radius: var(--radius-round);
  color: var(--color-navy);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 800;
  flex: 0 0 auto;
  line-height: 1.2;
}

.client-detail-body h3 {
  margin: 0 0 var(--space-2xs);
  font-size: var(--text-md);
  color: var(--color-navy-deep);
}

.client-detail-body p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-ink-soft);
  line-height: 1.5;
}

.client-detail-highlight {
  background: var(--color-navy-deep);
  color: #ffffff;
  border-color: var(--color-yellow);
}

.client-detail-highlight h3 {
  color: var(--color-yellow);
}

.client-detail-highlight p {
  color: rgba(255, 255, 255, 0.8);
}

/* Shared editorial spacing and factual content treatments. */
.section-head-spaced {
  margin-bottom: var(--space-2xl);
}

.section-action {
  margin-top: var(--space-xl);
}

.constrained-lead {
  max-width: 43rem;
  margin: var(--space-sm) auto 0;
}

.client-group-spaced {
  margin-top: var(--space-xl);
}

.location-note {
  margin-top: var(--space-xs);
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.manufacturing-section {
  padding-block: var(--space-3xl);
  background: var(--color-navy-deep);
  color: var(--color-paper);
}

.manufacturing-heading .eyebrow {
  color: var(--color-yellow);
}

.manufacturing-heading h2 {
  color: var(--color-white);
}

.manufacturing-section .section-head > p:not(.eyebrow),
.manufacturing-heading.section-head > p:not(.eyebrow),
.manufacturing-heading .lead,
.manufacturing-lead {
  max-width: 43rem;
  margin: var(--space-sm) auto 0;
  color: var(--color-paper-deep) !important;
  font-size: var(--text-md);
  line-height: 1.6;
}

.client-section-muted {
  background: var(--color-surface);
}

.trust-ledger {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.trust-chip {
  padding: var(--space-sm) var(--space-lg);
  border: var(--rule-thin) solid var(--color-line);
  border-radius: var(--radius-round);
  background: var(--color-paper);
  color: var(--color-navy-deep);
  font-family: var(--font-label);
  font-size: var(--text-sm);
  font-weight: 800;
}

/* Manufacturing Department Highlights */
.dept-highlights {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.dept-highlights li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--color-ink-soft);
  font-size: var(--text-base);
  line-height: 1.5;
}

.dept-highlights li::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-yellow);
  font-size: 0.75rem;
  line-height: 1.6;
}

.dept-highlights strong {
  color: var(--color-ink);
  font-weight: 700;
}

/* Quality Control & Packing Flow Grid */
.qc-flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.qc-flow-card {
  padding: var(--space-xl);
  background: var(--color-paper);
  border: var(--rule-thin) solid var(--color-line);
  border-radius: 4px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.qc-flow-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.qc-step-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--color-yellow);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.qc-flow-card h3 {
  font-size: var(--text-lg);
  font-weight: 800;
  margin-bottom: var(--space-xs);
  color: var(--color-navy-deep);
}

.qc-flow-card p {
  color: var(--color-ink-soft);
  font-size: var(--text-sm);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 540px) {
  .section-head-spaced {
    margin-bottom: var(--space-xl);
  }

  .banner-hero-actions .button {
    flex: 1 1 100%;
  }

  .trust-chip {
    width: 100%;
  }
}

