/* WorkHat Services Ltd — Global Stylesheet */
/* tokens.css is loaded separately in base.njk — no @import needed here */

/* ─────────────────────────────────────────────
   GOOGLE FONTS (fallback declaration - actual load via HTML link)
───────────────────────────────────────────── */

/* ─────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--workwear-navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

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

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ─────────────────────────────────────────────
   SKIP LINK (ACCESSIBILITY)
───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  z-index: 9999;
  padding: var(--sp-3) var(--sp-6);
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  transition: top var(--dur-fast) var(--ease);
}

.skip-link:focus {
  top: var(--sp-4);
}

/* ─────────────────────────────────────────────
   FOCUS STATES
───────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ─────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

@media (max-width: 640px) {
  .container {
    padding-inline: var(--sp-4);
  }
}

.section {
  padding-block: var(--sp-24);
}

.section--sm {
  padding-block: var(--sp-16);
}

.section--lg {
  padding-block: var(--sp-32);
}

.section--pale {
  background: var(--pale-concrete);
}

.section--mist {
  background: var(--mist);
}

.section--navy {
  background: var(--workwear-navy);
  color: var(--white);
}

.section--charcoal {
  background: var(--charcoal);
  color: var(--white);
}

.section--deep {
  background: var(--deep-navy);
  color: var(--white);
}

.section--teal {
  background: var(--teal);
  color: var(--white);
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--workwear-navy);
  letter-spacing: -0.02em;
}

.h1 { font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl)); }
.h2 { font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl)); }
.h3 { font-size: clamp(var(--text-2xl), 2.5vw, var(--text-4xl)); }
.h4 { font-size: clamp(var(--text-xl), 2vw, var(--text-3xl)); }
.h5 { font-size: var(--text-xl); }
.h6 { font-size: var(--text-lg); }

h1 { font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl)); }
h2 { font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl)); }
h3 { font-size: clamp(var(--text-2xl), 2.5vw, var(--text-4xl)); }
h4 { font-size: clamp(var(--text-xl), 2vw, var(--text-3xl)); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

.text-white h1, .text-white h2, .text-white h3,
.text-white h4, .text-white h5, .text-white h6,
.section--navy h1, .section--navy h2, .section--navy h3,
.section--charcoal h1, .section--charcoal h2, .section--charcoal h3,
.section--deep h1, .section--deep h2, .section--deep h3,
.section--teal h1, .section--teal h2, .section--teal h3 {
  color: var(--white);
}

.lead {
  font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
  line-height: 1.65;
  color: var(--steel-blue);
  max-width: var(--max-w-prose);
}

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

.text-teal { color: var(--teal); }
.text-amber { color: var(--safety-amber); }
.text-navy { color: var(--workwear-navy); }
.text-steel { color: var(--steel-blue); }

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

/* Section labels */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-4);
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  flex-shrink: 0;
}

.section-label--amber {
  color: var(--safety-amber);
}

.section-label--amber::before {
  background: var(--safety-amber);
}

.section-label--white {
  color: rgba(255,255,255,0.75);
}

.section-label--white::before {
  background: rgba(255,255,255,0.5);
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-8);
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--r-md);
  transition: all var(--dur-base) var(--ease);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,151,178,0.30);
}

.btn--primary:hover {
  background: var(--teal-deep);
  box-shadow: 0 6px 20px rgba(0,151,178,0.40);
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--navy {
  background: var(--workwear-navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--navy:hover {
  background: var(--deep-navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--workwear-navy);
  border: 2px solid var(--workwear-navy);
}

.btn--outline:hover {
  background: var(--workwear-navy);
  color: var(--white);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--outline-teal {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}

.btn--outline-teal:hover {
  background: var(--teal);
  color: var(--white);
}

.btn--sm {
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--text-xs);
}

.btn--lg {
  padding: var(--sp-5) var(--sp-10);
  font-size: var(--text-base);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur-base) var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(7,24,39,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--sp-8);
}

.nav__logo {
  flex-shrink: 0;
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-3);
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--workwear-navy);
  border-radius: var(--r-md);
  transition: all var(--dur-fast) var(--ease);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--teal);
  background: var(--teal-soft);
}

.nav__link--cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: var(--sp-2) var(--sp-5);
  margin-left: var(--sp-2);
  box-shadow: 0 4px 12px rgba(0,151,178,0.25);
}

.nav__link--cta:hover {
  background: var(--teal-deep) !important;
  color: var(--white) !important;
  box-shadow: 0 6px 16px rgba(0,151,178,0.35);
  transform: translateY(-1px);
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + var(--sp-2));
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-2);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all var(--dur-base) var(--ease);
  z-index: var(--z-overlay);
}

.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--workwear-navy);
  border-radius: var(--r-md);
  transition: all var(--dur-fast) var(--ease);
}

.nav__dropdown-link:hover {
  background: var(--teal-soft);
  color: var(--teal);
}

.nav__dropdown-link::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.nav__chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--dur-fast) var(--ease);
}

.nav__item:hover .nav__chevron {
  transform: rotate(180deg);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  cursor: pointer;
  border: none;
  background: none;
  transition: background var(--dur-fast) var(--ease);
}

.nav__toggle:hover {
  background: var(--teal-soft);
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--workwear-navy);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease);
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  overflow-y: auto;
  z-index: var(--z-nav);
  padding: var(--sp-6);
  border-top: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease);
}

.nav__mobile.is-open {
  transform: translateX(0);
}

.nav__mobile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.nav__mobile-link {
  display: block;
  padding: var(--sp-4) var(--sp-3);
  font-family: var(--font-head);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--workwear-navy);
  border-radius: var(--r-md);
  border-bottom: 1px solid var(--line);
  transition: all var(--dur-fast) var(--ease);
}

.nav__mobile-link:hover {
  color: var(--teal);
  background: var(--teal-soft);
}

.nav__mobile-subnav {
  padding-left: var(--sp-4);
  padding-bottom: var(--sp-2);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.nav__mobile-sublink {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-3);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--steel-blue);
  border-radius: var(--r-md);
  transition: all var(--dur-fast) var(--ease);
}

.nav__mobile-sublink::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.nav__mobile-sublink:hover {
  color: var(--teal);
  background: var(--teal-soft);
}

.nav__mobile-cta {
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

@media (max-width: 1024px) {
  .nav__list { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: block; }
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--white);
  overflow: hidden;
  padding-top: var(--sp-24);
  padding-bottom: var(--sp-20);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pale-concrete) 0%, var(--white) 60%);
  z-index: 0;
}

.hero__diagonal {
  position: absolute;
  top: 0;
  right: -10%;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--mist) 0%, var(--pale-concrete) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-2);
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-1) var(--sp-3);
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  border: 1px solid rgba(0,151,178,0.2);
}

.hero__tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

.hero__title {
  font-size: clamp(var(--text-4xl), 4.5vw, var(--text-6xl));
  font-weight: 800;
  line-height: 1.1;
  color: var(--workwear-navy);
  letter-spacing: -0.03em;
}

.hero__title span {
  color: var(--teal);
}

.hero__lead {
  font-size: clamp(var(--text-base), 1.5vw, var(--text-lg));
  color: var(--steel-blue);
  line-height: 1.7;
  max-width: 52ch;
}

.hero__visual {
  position: relative;
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-caption {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-4);
  right: var(--sp-4);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.75);
  background: rgba(7,24,39,0.55);
  backdrop-filter: blur(8px);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
}

.hero__card {
  position: absolute;
  bottom: -var(--sp-4);
  left: -var(--sp-8);
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--teal);
  min-width: 240px;
}

.hero__card-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: var(--sp-2);
}

.hero__card-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.hero__card-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--workwear-navy);
}

.hero__card-item::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal-soft);
  border: 1.5px solid var(--teal);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%230097b2' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
  .hero__diagonal {
    display: none;
  }
  .hero__card {
    position: static;
    margin-top: var(--sp-4);
  }
}

/* ─────────────────────────────────────────────
   WORK-ZONE DIVIDER
───────────────────────────────────────────── */
.work-zone-divider {
  height: 4px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-deep) 40%, var(--steel-blue) 70%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.work-zone-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 12px,
    rgba(255,255,255,0.3) 12px,
    rgba(255,255,255,0.3) 16px
  );
}

.work-zone-divider--amber {
  background: linear-gradient(90deg, var(--safety-amber) 0%, rgba(230,169,40,0.3) 100%);
}

.diagonal-band {
  height: 3px;
  background: repeating-linear-gradient(
    -45deg,
    var(--teal) 0,
    var(--teal) 4px,
    transparent 4px,
    transparent 10px
  );
  opacity: 0.3;
}

/* ─────────────────────────────────────────────
   SECTION HEADER
───────────────────────────────────────────── */
.section-header {
  margin-bottom: var(--sp-12);
}

.section-header--center {
  text-align: center;
  align-items: center;
}

.section-header--center .section-label {
  justify-content: center;
}

.section-header--center .lead {
  margin-inline: auto;
}

/* ─────────────────────────────────────────────
   SERVICE CARDS
───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

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

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

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: all var(--dur-base) var(--ease);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(0,151,178,0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  background: var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__title {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--workwear-navy);
  line-height: 1.2;
}

.service-card__body {
  font-size: var(--text-sm);
  color: var(--steel-blue);
  line-height: 1.7;
  flex: 1;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.service-card__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-blue);
  background: var(--pale-concrete);
  padding: var(--sp-1) var(--sp-2);
  border-radius: var(--r-sm);
}

.service-card__link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--teal);
  margin-top: var(--sp-2);
  transition: gap var(--dur-fast) var(--ease);
}

.service-card:hover .service-card__link {
  gap: var(--sp-3);
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--dur-fast) var(--ease);
}

.service-card:hover .service-card__link svg {
  transform: translateX(3px);
}

/* ─────────────────────────────────────────────
   PREMISES CARDS
───────────────────────────────────────────── */
.premises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

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

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

.premises-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: all var(--dur-base) var(--ease);
  text-decoration: none;
  color: inherit;
  position: relative;
}

.premises-card::after {
  content: '→';
  position: absolute;
  bottom: var(--sp-6);
  right: var(--sp-6);
  color: var(--teal);
  font-size: var(--text-lg);
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--dur-base) var(--ease);
}

.premises-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.premises-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.premises-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--steel-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.premises-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--steel-blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.premises-card__title {
  font-family: var(--font-head);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--workwear-navy);
}

.premises-card__body {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   SITE-READY SYSTEM
───────────────────────────────────────────── */
.system-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

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

@media (max-width: 640px) {
  .system-steps {
    grid-template-columns: 1fr;
  }
}

.system-step {
  padding: var(--sp-8) var(--sp-6);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  border-right: 1px solid var(--line-light);
}

.system-step:last-child {
  border-right: none;
}

.system-step__number {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--teal);
  letter-spacing: 0.12em;
  font-weight: 700;
}

.system-step__label {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--white);
}

.system-step__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.system-step__body {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.system-step__connector {
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  width: 2px;
  height: 40px;
  background: var(--teal);
  z-index: 1;
}

/* ─────────────────────────────────────────────
   CHECKLIST PANEL
───────────────────────────────────────────── */
.checklist-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
}

.checklist-panel--navy {
  background: var(--deep-navy);
  border-color: rgba(255,255,255,0.08);
}

.checklist-panel__title {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--workwear-navy);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--line);
}

.checklist-panel--navy .checklist-panel__title {
  color: var(--white);
  border-color: rgba(255,255,255,0.1);
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--workwear-navy);
  line-height: 1.5;
}

.checklist-item::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: var(--r-sm);
  background: var(--teal-soft);
  border: 1.5px solid var(--teal);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4 10l4.5 4.5L16 6' stroke='%230097b2' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.checklist-panel--navy .checklist-item {
  color: rgba(255,255,255,0.85);
}

/* ─────────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────────── */
.cta-section {
  background: var(--workwear-navy);
  padding-block: var(--sp-24);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(0,151,178,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-6);
  max-width: 680px;
  margin-inline: auto;
}

.cta-section__title {
  font-size: clamp(var(--text-3xl), 3vw, var(--text-5xl));
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.cta-section__body {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   CONTACT FORM
───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

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

.form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

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

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid--full {
    grid-column: 1;
  }
  .form-wrap {
    padding: var(--sp-6);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--workwear-navy);
}

.form-label .optional {
  font-weight: 400;
  color: var(--muted);
  font-size: var(--text-xs);
}

.form-control {
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--workwear-navy);
  background: var(--white);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  width: 100%;
  appearance: none;
}

.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,151,178,0.12);
  outline: none;
}

.form-control::placeholder {
  color: var(--muted);
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2366737c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-3) center;
  padding-right: var(--sp-10);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--steel-blue);
  line-height: 1.5;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--teal);
}

.form-note {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--muted);
  padding: var(--sp-4);
  background: var(--pale-concrete);
  border-radius: var(--r-md);
  border-left: 3px solid var(--teal);
  line-height: 1.6;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.contact-info-card {
  background: var(--pale-concrete);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.contact-info-card__item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.contact-info-card__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 600;
}

.contact-info-card__value {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--workwear-navy);
  word-break: break-all;
}

.contact-info-card__divider {
  height: 1px;
  background: var(--line);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
}

.footer-top {
  padding-block: var(--sp-16);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.footer-logo {
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  display: inline-block;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 36ch;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.footer-contact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 700;
}

.footer-contact-value {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  word-break: break-all;
}

.footer-contact-value a:hover {
  color: var(--teal);
}

.footer-column-title {
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--dur-fast) var(--ease);
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-bottom {
  padding-block: var(--sp-6);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-legal {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-legal-links {
  display: flex;
  gap: var(--sp-4);
}

.footer-legal-links a {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  transition: color var(--dur-fast) var(--ease);
}

.footer-legal-links a:hover {
  color: var(--teal);
}

/* ─────────────────────────────────────────────
   BREADCRUMBS
───────────────────────────────────────────── */
.breadcrumbs {
  padding-block: var(--sp-4);
  border-bottom: 1px solid var(--line);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--muted);
}

.breadcrumb-item a {
  color: var(--teal);
  transition: color var(--dur-fast) var(--ease);
}

.breadcrumb-item a:hover {
  color: var(--teal-deep);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '/';
  color: var(--line);
}

/* ─────────────────────────────────────────────
   PAGE HERO (INNER PAGES)
───────────────────────────────────────────── */
.page-hero {
  background: var(--pale-concrete);
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-16);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -5%;
  top: -20%;
  width: 45%;
  height: 140%;
  background: linear-gradient(135deg, var(--mist) 0%, transparent 60%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 64ch;
}

.page-hero__label {
  margin-bottom: var(--sp-4);
}

.page-hero__title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 800;
  line-height: 1.1;
  color: var(--workwear-navy);
  margin-bottom: var(--sp-5);
  letter-spacing: -0.025em;
}

.page-hero__lead {
  font-size: clamp(var(--text-base), 1.5vw, var(--text-lg));
  color: var(--steel-blue);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

/* ─────────────────────────────────────────────
   IMAGE PANELS
───────────────────────────────────────────── */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.content-split--reverse {
  direction: rtl;
}

.content-split--reverse > * {
  direction: ltr;
}

@media (max-width: 900px) {
  .content-split {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

.content-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  position: relative;
}

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

.content-image__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-3) var(--sp-4);
  background: linear-gradient(transparent, rgba(7,24,39,0.7));
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.75);
}

/* ─────────────────────────────────────────────
   PROCESS CARDS
───────────────────────────────────────────── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  counter-reset: step;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-6);
  padding: var(--sp-8);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  position: relative;
  transition: all var(--dur-base) var(--ease);
}

.process-step:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0,151,178,0.2);
  transform: translateX(4px);
}

.process-step__number {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.1em;
  width: 52px;
  height: 52px;
  border-radius: var(--r-full);
  background: var(--teal-soft);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-step__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}

.process-step__title {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--workwear-navy);
  margin-bottom: var(--sp-2);
}

.process-step__body {
  font-size: var(--text-sm);
  color: var(--steel-blue);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   STAT STRIP / INFO BAND
───────────────────────────────────────────── */
.info-band {
  background: var(--teal);
  padding-block: var(--sp-12);
}

.info-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
  text-align: center;
}

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

@media (max-width: 600px) {
  .info-band__grid {
    grid-template-columns: 1fr;
  }
}

.info-band__item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.info-band__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.info-band__value {
  font-family: var(--font-head);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.info-band__body {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
}

/* ─────────────────────────────────────────────
   LEGAL PAGES
───────────────────────────────────────────── */
.legal-content {
  max-width: 72ch;
  margin-inline: auto;
}

.legal-content h2 {
  font-size: var(--text-2xl);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--line);
  color: var(--workwear-navy);
}

.legal-content h3 {
  font-size: var(--text-xl);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
  color: var(--workwear-navy);
}

.legal-content p {
  font-size: var(--text-base);
  color: var(--steel-blue);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}

.legal-content ul, .legal-content ol {
  margin-left: var(--sp-6);
  margin-bottom: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.legal-content ul li {
  list-style: disc;
  font-size: var(--text-base);
  color: var(--steel-blue);
  line-height: 1.7;
}

.legal-content ol li {
  list-style: decimal;
  font-size: var(--text-base);
  color: var(--steel-blue);
  line-height: 1.7;
}

.legal-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--teal-deep);
}

.legal-meta {
  background: var(--pale-concrete);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.legal-meta p {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--muted);
  margin: 0;
}

/* ─────────────────────────────────────────────
   COOKIE BANNER
───────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-cookie);
  background: var(--charcoal);
  color: var(--white);
  padding: var(--sp-5) 0;
  transform: translateY(100%);
  transition: transform var(--dur-slow) var(--ease);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.25);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  min-width: 240px;
}

.cookie-banner__text a {
  color: var(--teal);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--sp-3);
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   UTILITY
───────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.mt-0 { margin-top: 0; }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }
.mb-12 { margin-bottom: var(--sp-12); }

.gap-2 { gap: var(--sp-2); }
.gap-4 { gap: var(--sp-4); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

.grid { display: grid; }

.w-full { width: 100%; }
.max-w-prose { max-width: var(--max-w-prose); }
.max-w-narrow { max-width: var(--max-w-narrow); }
.mx-auto { margin-inline: auto; }

/* Amber accent */
.amber-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--safety-amber);
  margin-right: var(--sp-2);
}

/* Teal line accent */
.teal-rule {
  height: 3px;
  width: 48px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: var(--sp-5);
}

/* ─────────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slower) var(--ease-out),
              transform var(--dur-slower) var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    transition: none;
    transform: none;
    opacity: 1;
  }
  
  .site-header,
  .btn,
  .service-card,
  .premises-card,
  .process-step,
  .nav__dropdown,
  .nav__mobile,
  .cookie-banner {
    transition: none;
  }
}

/* ─────────────────────────────────────────────
   ABOUT PAGE SPECIFICS
───────────────────────────────────────────── */
.company-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}

@media (max-width: 640px) {
  .company-detail-grid {
    grid-template-columns: 1fr;
  }
}

.company-detail-item {
  padding: var(--sp-5) var(--sp-6);
  background: var(--pale-concrete);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.company-detail-item__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 700;
}

.company-detail-item__value {
  font-family: var(--font-head);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--workwear-navy);
  line-height: 1.4;
}

/* ─────────────────────────────────────────────
   SITE-READY SYSTEM (HOMEPAGE VERSION)
───────────────────────────────────────────── */
.system-section {
  background: var(--deep-navy);
  padding-block: var(--sp-24);
  position: relative;
  overflow: hidden;
}

.system-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 48px,
    rgba(255,255,255,0.015) 48px,
    rgba(255,255,255,0.015) 52px
  );
  pointer-events: none;
}

/* ─────────────────────────────────────────────
   FEATURE LIST (inline bullets)
───────────────────────────────────────────── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--steel-blue);
  line-height: 1.6;
}

.feature-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─────────────────────────────────────────────
   RESPONSIVE UTILITIES
───────────────────────────────────────────── */
@media (max-width: 640px) {
  .section {
    padding-block: var(--sp-16);
  }
  .section--lg {
    padding-block: var(--sp-20);
  }
  h1 {
    font-size: var(--text-4xl);
  }
  h2 {
    font-size: var(--text-3xl);
  }
}

/* -- WorkHat Supplemental Styles (new pages) -- */

/* Hero */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.hero-content {}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
  background: var(--teal-soft);
  color: var(--teal-deep);
  border: 1px solid rgba(0,151,178,0.2);
}

.hero-tag--amber {
  background: var(--amber-soft);
  color: #a47518;
  border-color: rgba(230,169,40,0.25);
}

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(var(--text-3xl), 4.5vw, var(--text-5xl));
  font-weight: 800;
  line-height: 1.1;
  color: var(--workwear-navy);
  margin-bottom: var(--sp-6);
  letter-spacing: -0.02em;
}

.hero-h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero-desc {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--steel-blue);
  margin-bottom: var(--sp-8);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

.hero-visual { position: relative; }

.hero-img-wrap {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 3;
}

.hero-img-wrap img,
.hero-img-wrap picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  bottom: var(--sp-6);
  left: calc(var(--sp-6) * -1);
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-xl);
  min-width: 200px;
  border-left: 4px solid var(--teal);
}

.hero-card-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-2);
}

.hero-card-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  list-style: none;
}

.hero-card-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--workwear-navy);
  font-weight: 500;
}

.hero-card-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.hero-chip {
  position: absolute;
  top: var(--sp-6);
  right: calc(var(--sp-4) * -1);
  background: var(--workwear-navy);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--text-xs);
  font-weight: 600;
  text-align: center;
  box-shadow: var(--shadow-md);
}

/* Info Strip */
.info-strip {
  background: var(--deep-navy);
  color: rgba(255,255,255,0.8);
  padding: var(--sp-8) 0;
}

.info-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.info-strip-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
}

.info-strip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* Two-up Layout */
.two-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.two-up--reverse .two-up-visual { order: -1; }

.two-up-visual {
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 3;
}

.two-up-visual img,
.two-up-visual picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image Panel */
.image-panel {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.image-panel img,
.image-panel picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-panel-badge {
  position: absolute;
  top: var(--sp-5);
  left: var(--sp-5);
  background: var(--workwear-navy);
  color: rgba(255,255,255,0.85);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  border-left: 3px solid var(--teal);
}

/* Sidebar Panel */
.sidebar-panel {
  background: var(--pale-concrete);
  border-radius: var(--r-xl);
  padding: var(--sp-7);
  border: 1px solid var(--line);
  position: sticky;
  top: 100px;
}

.sidebar-heading {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--workwear-navy);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--line);
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}

.sidebar-link {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  background: var(--white);
  border-radius: var(--r-md);
  color: var(--workwear-navy);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all var(--dur-fast) var(--ease);
  border: 1px solid var(--line);
  text-decoration: none;
}

.sidebar-link:hover { border-color: var(--teal); color: var(--teal); }

/* Plan Features */
.plan-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: all var(--dur-base) var(--ease);
}

.plan-feature:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }

.plan-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.plan-feature-icon svg { width: 20px; height: 20px; }

.plan-feature-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--workwear-navy);
  margin-bottom: var(--sp-1);
}

.plan-feature-desc {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.6;
}

/* About Detail Grid */
.about-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

.about-detail-item {
  padding: var(--sp-5) var(--sp-6);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

.about-detail-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-2);
}

.about-detail-value {
  font-size: var(--text-base);
  color: var(--workwear-navy);
  font-weight: 500;
}

/* Nav BEM (existing header support) */
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: var(--sp-6); }
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 44px; width: auto; }
.nav__list { display: flex; align-items: center; gap: var(--sp-1); list-style: none; }
.nav__item { position: relative; }
.nav__link { display: flex; align-items: center; gap: var(--sp-1); padding: var(--sp-2) var(--sp-3); color: var(--workwear-navy); font-size: var(--text-sm); font-weight: 600; border-radius: var(--r-md); border: none; background: none; cursor: pointer; text-decoration: none; transition: all var(--dur-fast) var(--ease); white-space: nowrap; font-family: var(--font-body); }
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--teal); background: var(--teal-xsoft); }
.nav__link--cta { background: var(--teal); color: var(--white) !important; padding: var(--sp-2) var(--sp-5); box-shadow: var(--shadow-teal); }
.nav__link--cta:hover { background: var(--teal-deep) !important; }
.nav__chevron { width: 12px; height: 12px; transition: transform var(--dur-fast) var(--ease); }
.nav__item:hover .nav__chevron, .nav__link[aria-expanded="true"] .nav__chevron { transform: rotate(-180deg); }
.nav__dropdown { position: absolute; top: calc(100% + var(--sp-2)); left: 0; min-width: 240px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: var(--sp-2); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: all var(--dur-base) var(--ease); z-index: var(--z-overlay); }
.nav__item:hover .nav__dropdown, .nav__link[aria-expanded="true"] + .nav__dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav__dropdown-link { display: block; padding: var(--sp-3) var(--sp-4); color: var(--workwear-navy); font-size: var(--text-sm); font-weight: 500; border-radius: var(--r-md); transition: all var(--dur-fast) var(--ease); }
.nav__dropdown-link:hover { background: var(--teal-soft); color: var(--teal); }
.nav__toggle { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; border-radius: var(--r-md); border: 1px solid var(--line); background: transparent; cursor: pointer; padding: 0; }
.nav__toggle span { display: block; width: 20px; height: 2px; background: var(--workwear-navy); border-radius: 2px; transition: all var(--dur-base) var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile { display: none; position: fixed; inset: 72px 0 0 0; background: var(--white); z-index: 99; overflow-y: auto; padding: var(--sp-6); border-top: 1px solid var(--line); transform: translateX(100%); transition: transform var(--dur-slow) var(--ease); }
.nav__mobile[aria-hidden="false"] { transform: translateX(0); }
.nav__mobile-list { display: flex; flex-direction: column; gap: var(--sp-1); list-style: none; margin-bottom: var(--sp-6); }
.nav__mobile-link { display: block; padding: var(--sp-4); color: var(--workwear-navy); font-size: var(--text-lg); font-weight: 600; border-radius: var(--r-md); transition: all var(--dur-fast) var(--ease); border-bottom: 1px solid var(--line); text-decoration: none; }
.nav__mobile-link:hover { color: var(--teal); background: var(--teal-xsoft); }
.nav__mobile-subnav { display: flex; flex-direction: column; gap: var(--sp-1); padding: var(--sp-2) 0; }
.nav__mobile-sublink { display: block; padding: var(--sp-3) var(--sp-6); color: var(--steel-blue); font-size: var(--text-base); font-weight: 500; border-radius: var(--r-md); transition: all var(--dur-fast) var(--ease); text-decoration: none; }
.nav__mobile-sublink:hover { color: var(--teal); background: var(--teal-xsoft); }
.nav__mobile-cta { padding-top: var(--sp-4); border-top: 1px solid var(--line); }

/* Footer extras */
.footer-tagline { font-size: var(--text-sm); line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 32ch; margin-bottom: var(--sp-6); }
.footer-contact { display: flex; flex-direction: column; gap: var(--sp-4); }
.footer-contact-label { display: block; font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: var(--sp-1); }
.footer-contact-value { font-size: var(--text-sm); color: rgba(255,255,255,0.8); text-decoration: none; }
.footer-contact-value:hover { color: var(--teal); }

/* Utility */
.w-full { width: 100%; }

/* Mobile responsive additions */
@media (max-width: 900px) {
  .two-up { grid-template-columns: 1fr; }
  .two-up--reverse .two-up-visual { order: 0; }
  .about-detail-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .info-strip-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .nav__list { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: block; }
}
