/* ============================================================
   OILY Website — Homepage Stylesheet
   Palette: Black · White · Orange (#D97706)
   Fonts: Lexend (headings) + Source Sans 3 (body)
   Design: Apple-level premium — generous whitespace, restrained color
   ============================================================ */

/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  --black: #0A0A0A;
  --off-black: #111111;
  --white: #FFFFFF;
  --grey-900: #1A1A1A;
  --grey-700: #3A3A3A;
  --grey-500: #6B6B6B;
  --grey-400: #999999;
  --grey-200: #E5E5E5;
  --grey-100: #F5F5F5;
  --grey-50: #FAFAFA;
  --orange: #D97706;
  --orange-dark: #B45309;
  --orange-pale: #FFFBEB;
  --font-head: 'Lexend', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  --nav-height: 88px;
  --container-max: 1200px;
  --container-pad: clamp(1.25rem, 5vw, 2.5rem);
  --section-pad: clamp(52px, 7vw, 80px);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 2px 12px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.05);
  --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --transition-base: 0.22s ease;
  --transition-reveal: 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--grey-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ============================================================
   4. TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.section-subheading {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--grey-500);
  line-height: 1.7;
  max-width: 52ch;
  margin-top: 1rem;
}

.section-number {
  font-family: var(--font-head);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  color: var(--grey-200);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  display: block;
}

.section-label-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2.5rem;
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-intro {
  padding-top: 0.5rem;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.btn:active {
  transform: scale(0.98);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}

.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.35);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}

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

.btn-lg {
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-loading {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn.loading .btn-text {
  display: none;
}

.btn.loading .btn-loading {
  display: block;
}

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

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition-base);
}

.site-nav.nav-scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 2rem;
  /* Wider than the site container — the nav carries 9 links plus the CTA */
  max-width: 1260px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--white);
}

.nav-logo-img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-logo-img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.nav-logo-wordmark {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-base), background var(--transition-base);
  text-decoration: none;
}

.nav-link:hover,
.nav-link.nav-link-active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  font-size: 0.875rem;
  padding: 0.55rem 1.25rem;
  margin-left: 0.75rem;
  white-space: nowrap;
}

/* Between the hamburger breakpoint and the full nav width there isn't room
   for 9 links at full spacing — tighten instead of letting labels wrap. */
@media (min-width: 1081px) and (max-width: 1299px) {
  .nav-inner {
    gap: 1rem;
  }
  .nav-link {
    font-size: 0.85rem;
    padding: 0.5rem 0.5rem;
  }
  .nav-cta {
    padding: 0.5rem 1rem;
    margin-left: 0.35rem;
  }
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}

.nav-hamburger:hover {
  background: rgba(255,255,255,0.08);
}

.nav-hamburger:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}

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

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

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

/* ============================================================
   7. HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img,
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(10, 10, 10, 0.65) 45%,
    rgba(10, 10, 10, 0.28) 70%,
    rgba(10, 10, 10, 0.15) 100%
  );
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem);
  width: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.hero-h1 em {
  font-style: italic;
  color: var(--orange);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

/* Hero Form Card */
.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35), 0 4px 16px rgba(0,0,0,0.2);
}

.hero-form-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--grey-200);
}

.form-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}

.form-tagline {
  font-size: 0.9rem;
  color: var(--grey-500);
  margin-top: 0.35rem;
}

/* ============================================================
   8. FORM STYLES
   ============================================================ */
.hero-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field-label {
  font-family: var(--font-body);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--grey-700);
  letter-spacing: 0.01em;
}

.field-required {
  color: var(--orange);
}

.field-input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--grey-900);
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  width: 100%;
}

.field-input::placeholder {
  color: var(--grey-400);
}

.field-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

.field-input.field-error {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.field-textarea {
  resize: vertical;
  min-height: 100px;
}

.field-select-wrap {
  position: relative;
}

.field-select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--grey-900);
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 0.7rem 2.25rem 0.7rem 0.9rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.field-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

.select-arrow {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--grey-500);
  pointer-events: none;
  line-height: 1;
}

.field-error-msg {
  font-size: 0.78rem;
  color: #DC2626;
  min-height: 1em;
  display: block;
}

.field-optional {
  font-weight: 400;
  color: var(--grey-400);
}

/* Business / individual toggle */
.radio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.radio-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--grey-700);
  cursor: pointer;
  user-select: none;
  transition: border-color var(--transition-base), background var(--transition-base), color var(--transition-base);
}

.radio-pill input[type="radio"] {
  accent-color: var(--orange);
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
}

.radio-pill:hover {
  border-color: var(--grey-400);
}

.radio-pill:has(input:checked) {
  border-color: var(--orange);
  background: rgba(217, 119, 6, 0.07);
  color: var(--grey-900);
}

.business-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: bizReveal 300ms ease;
}

.business-fields[hidden] {
  display: none;
}

@keyframes bizReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-success {
  display: none;
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  color: #166534;
  text-align: center;
  margin-top: 0.5rem;
}

.form-success.visible {
  display: block;
}

/* ============================================================
   9. STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--off-black);
  padding: 2.5rem 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 1.5rem;
  text-align: center;
}

.stat-number-row {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-number.stat-text {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
}

.stat-suffix {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--orange);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}

/* ============================================================
   10. SECTORS
   ============================================================ */
.sectors-section {
  padding-block: var(--section-pad);
  background: var(--white);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sector-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.sector-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.sector-img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.sector-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sector-card:hover .sector-img {
  transform: scale(1.04);
}

.sector-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(6px);
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
}

.sector-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sector-truth {
  font-style: italic;
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.4;
}

.sector-h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}

.sector-desc {
  font-size: 0.9rem;
  color: var(--grey-500);
  line-height: 1.65;
}

.sector-products {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  list-style: none;
  border-top: 1px solid var(--grey-100);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
}

.sector-products li {
  font-size: 0.85rem;
  color: var(--grey-700);
  padding-left: 1rem;
  position: relative;
}

.sector-products li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
}

.sector-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  padding-top: 0.5rem;
  transition: gap var(--transition-base);
}

.sector-cta:hover {
  gap: 0.55rem;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}

/* ============================================================
   11. PEOPLE STRIP
   ============================================================ */
.people-section {
  padding-block: var(--section-pad);
  background: var(--white);
  border-top: 1px solid var(--grey-100);
}

.people-header {
  max-width: 600px;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.people-card {
  margin: 0;
  padding: 0;
}

.people-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--grey-100);
}

.people-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.people-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 0.9rem;
  background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 100%);
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.88);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ============================================================
   12. PERSONAS
   ============================================================ */
.personas-section {
  padding-block: var(--section-pad);
  background: var(--white);
}

.personas-header {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
}

.personas-header .section-number {
  position: absolute;
  top: -1rem;
  right: 0;
  opacity: 0.6;
}

.persona-tabs-wrap {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.persona-tab {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--grey-700);
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: 100px;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.persona-tab:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.persona-tab:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.persona-tab.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 2px 12px rgba(217, 119, 6, 0.3);
}

/* Persona Panels */
.persona-panels {
  position: relative;
}

.persona-panel {
  display: none;
}

.persona-panel.active {
  display: block;
  animation: fadeInPanel 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeInPanel {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.persona-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-card);
}

.persona-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.persona-statement {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.persona-body {
  font-size: 0.95rem;
  color: var(--grey-500);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.persona-promises {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey-100);
}

.persona-promises li {
  font-size: 0.9rem;
  color: var(--grey-700);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.persona-promises li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
}

.persona-visual-col {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.persona-img {
  width: 100%;
  height: 538px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-md);
}

/* ============================================================
   13. WHY OILY
   ============================================================ */
.why-section {
  padding-block: var(--section-pad);
  background: var(--grey-100);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.why-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 24px rgba(217, 119, 6, 0.08);
  transform: translateY(-2px);
}

.why-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.why-initial {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.04em;
}

.why-title {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}

.why-desc {
  font-size: 0.9rem;
  color: var(--grey-500);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.why-proof {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-400);
  border-top: 1px solid var(--grey-100);
  padding-top: 1rem;
  font-family: var(--font-body);
}

/* ============================================================
   14. VISUAL BREAK
   ============================================================ */
.visual-break {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.visual-break-bg {
  position: absolute;
  inset: 0;
}

.visual-break-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.visual-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
}

.visual-break-content {
  position: relative;
  z-index: 1;
  padding-block: 4rem;
  text-align: center;
}

.break-quote {
  max-width: 700px;
  margin-inline: auto;
}

.break-quote p {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.break-quote em {
  font-style: italic;
  color: var(--orange);
}

/* ============================================================
   15. TEAM
   ============================================================ */
.team-section {
  padding-block: var(--section-pad);
  background: var(--white);
}

.team-promise {
  border-left: 3px solid var(--orange);
  padding: 1.5rem 1.75rem;
  margin-bottom: clamp(2rem, 3.5vw, 2.75rem);
  background: var(--grey-50);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  max-width: 680px;
}

.team-promise p {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 500;
  color: var(--grey-700);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 0.6rem;
}

.team-promise cite {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--grey-400);
  font-style: normal;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.team-card:hover {
  border-color: var(--grey-400);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.team-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.team-avatar {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.team-avatar--teal {
  background: #0F766E;
}

.team-avatar--slate {
  background: #475569;
}

.avatar-initial {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.team-name-block {
  flex: 1;
}

.team-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.8rem;
  color: var(--grey-500);
  line-height: 1.4;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--grey-500);
  line-height: 1.7;
  flex: 1;
}

.team-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--grey-100);
  margin-top: auto;
}

.team-contact-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  transition: gap var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.team-contact-link:hover {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}

.team-availability {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 12px;
}

.availability-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3); }
  50% { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.1); }
}

.availability-text {
  font-size: 0.78rem;
  color: var(--grey-400);
}

/* ============================================================
   16. PRODUCTS
   ============================================================ */
.products-section {
  padding-block: var(--section-pad);
  background: var(--grey-100);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
}

.product-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  border-color: var(--grey-300);
}

.product-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.015em;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--grey-500);
  line-height: 1.65;
  flex: 1;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--grey-100);
  transition: gap var(--transition-base);
}

.product-link:hover {
  gap: 0.5rem;
}

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

/* ============================================================
   17. MOL TRUST
   ============================================================ */
.mol-section {
  padding-block: var(--section-pad);
  background: var(--white);
}

.mol-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.mol-body {
  font-size: 1rem;
  color: var(--grey-500);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  margin-top: 1rem;
}

.mol-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.mol-checklist li {
  font-size: 0.9rem;
  color: var(--grey-700);
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.5;
}

.mol-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.mol-badge-col {
  display: flex;
  justify-content: center;
}

.mol-badge-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 340px;
}

.mol-badge-card {
  background: var(--grey-50);
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
}

.mol-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.mol-logo-text {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
}

.mol-logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-400);
}

.mol-badge-desc {
  font-size: 0.85rem;
  color: var(--grey-500);
  font-weight: 600;
}

.mol-cert-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.cert-chip {
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--grey-700);
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  letter-spacing: 0.02em;
}

/* ============================================================
   18. CONTACT
   ============================================================ */
.contact-section {
  padding-block: var(--section-pad);
  background: var(--grey-100);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-section-num {
  display: block;
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 0.75rem;
}

.contact-body {
  font-size: 1rem;
  color: var(--grey-500);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 44ch;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.75rem;
  align-items: start;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  padding-top: 0.1rem;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--grey-700);
  line-height: 1.55;
  text-decoration: none;
  font-weight: 400;
}

a.contact-detail-value:hover {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-card);
}

.contact-form-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--grey-200);
  letter-spacing: -0.02em;
}

/* ============================================================
   19. FOOTER
   ============================================================ */
.site-footer {
  background: var(--off-black);
  color: rgba(255,255,255,0.75);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
  padding-block: 5rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: inline-block;
  width: fit-content;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 28ch;
}

.footer-reg {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}

.footer-social {
  list-style: none;
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
  padding: 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social svg {
  display: block;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-nav-heading {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-nav ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-nav ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   20. SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity var(--transition-reveal),
    transform var(--transition-reveal);
  will-change: opacity, transform;
}

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

/* Stagger siblings */
.reveal-item:nth-child(1) { transition-delay: 0ms; }
.reveal-item:nth-child(2) { transition-delay: 80ms; }
.reveal-item:nth-child(3) { transition-delay: 160ms; }
.reveal-item:nth-child(4) { transition-delay: 240ms; }
.reveal-item:nth-child(5) { transition-delay: 320ms; }
.reveal-item:nth-child(6) { transition-delay: 400ms; }

/* Override delay in hero — sequential reveal */
.hero-left .reveal-item:nth-child(1) { transition-delay: 200ms; }
.hero-left .reveal-item:nth-child(2) { transition-delay: 320ms; }
.hero-left .reveal-item:nth-child(3) { transition-delay: 420ms; }
.hero-left .reveal-item:nth-child(4) { transition-delay: 520ms; }
.hero-right.reveal-item { transition-delay: 380ms; }

/* ============================================================
   21. RESPONSIVE — MOBILE FIRST
   ============================================================ */

/* 600px — small mobile adjustments */
@media (max-width: 600px) {

  :root {
    --nav-height: 64px;
    --section-pad: 64px;
  }

  .section-label-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-number {
    display: none;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 1.25rem 1rem;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(3) {
    border-right: 1px solid rgba(255,255,255,0.06);
  }

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

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

  .persona-inner {
    grid-template-columns: 1fr;
  }

  .persona-visual-col {
    position: static;
    order: -1;
  }

  .persona-img {
    height: 240px;
  }

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

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

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

  .mol-inner {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

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

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

  .footer-nav-col:last-child {
    grid-column: 1 / -1;
  }

  .field-row {
    grid-template-columns: 1fr;
  }
}

/* 768px — tablet */
@media (min-width: 601px) and (max-width: 768px) {

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

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

  .hero-form-card {
    max-width: 100%;
  }

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

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

  .persona-inner {
    grid-template-columns: 1fr;
  }

  .persona-visual-col {
    position: static;
    order: -1;
  }

  .persona-img {
    height: 300px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

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

  .mol-inner {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

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

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 900px — medium screens */
@media (min-width: 769px) and (max-width: 900px) {

  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

  .people-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .persona-inner {
    grid-template-columns: 1fr 280px;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

/* Mobile Nav — all sizes below 1080px.
   (Raised from 900px: 9 links plus the CTA no longer fit inline on a
   small laptop without the labels wrapping.) */
@media (max-width: 1080px) {

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 0 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
    z-index: 999;
  }

  .nav-links.nav-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.875rem var(--container-pad);
    font-size: 1rem;
    border-radius: 0;
  }

  .nav-cta-item {
    padding: 0.75rem var(--container-pad) 0;
  }

  .nav-cta {
    display: block;
    text-align: center;
    margin-left: 0;
  }
}

/* 1200px — large screens */
@media (min-width: 1200px) {

  .hero-content {
    gap: 5rem;
  }

  .sector-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Hero mobile single column */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

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

  .hero-form-card {
    max-width: 500px;
    width: 100%;
  }
}

/* ============================================================
   22. PREFERS REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

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

  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal-item.revealed {
    opacity: 1;
    transform: none;
  }

  #hero-canvas {
    display: none;
  }
}

/* ============================================================
   23. FOCUS STYLES (a11y)
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================================
   25. MICRO ANIMATIONS
   ============================================================ */

/* — Scroll progress bar — */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--orange);
  z-index: 10000;
  pointer-events: none;
  border-radius: 0 1px 1px 0;
  /* No CSS transition — JS updates width directly for smooth tracking */
}

/* — Stats wave canvas: stats-bar needs stacking context — */
.stats-bar {
  position: relative;
}

.stats-inner {
  position: relative;
  z-index: 1;
}

.stats-wave-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* — Stat number glow pulse on counter complete — */
@keyframes statGlow {
  0%   { color: var(--orange); text-shadow: none; }
  40%  { color: #FF8540; text-shadow: 0 0 28px rgba(217, 119, 6, 0.6), 0 0 8px rgba(217, 119, 6, 0.3); }
  100% { color: var(--orange); text-shadow: none; }
}

.stat-number.stat-glow {
  animation: statGlow 900ms ease-out forwards;
}

/* — Card tilt: hardware-accelerate image wraps — */
.people-img-wrap {
  will-change: transform;
  transform-origin: center center;
}

/* — Visual break: ensure image overflow is clipped during parallax — */
.visual-break-bg {
  overflow: hidden;
}

/* — Magnetic buttons: hardware-accelerate — */
.btn-orange {
  will-change: transform;
}

/* Respect reduced-motion for all new animations */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  .stats-wave-canvas { display: none; }
  .stat-number.stat-glow { animation: none; }
}

/* ============================================================
   24. PRINT
   ============================================================ */
@media print {
  .site-nav,
  #hero-canvas,
  .visual-break,
  .hero-form-card,
  .contact-form-card {
    display: none;
  }

  body {
    font-size: 11pt;
    color: #000;
  }

  .section-heading {
    color: #000;
  }
}

/* ============================================================
   SA SERVICE MAP — Section 08
   ============================================================ */
.map-section {
  background: var(--grey-50);
  padding-block: var(--section-pad);
}

.map-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
  margin-top: 48px;
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 860px) {
  .map-wrap { grid-template-columns: 1fr; }
}

.sa-map-svg {
  width: 100%;
  height: auto;
  display: block;
}

.sa-province {
  fill: var(--grey-200);
  stroke: var(--white);
  stroke-width: 2;
  cursor: pointer;
  transition: fill 0.2s ease, filter 0.2s ease;
  outline: none;
}

.sa-province:hover,
.sa-province:focus {
  fill: rgba(217,119,6,0.22);
}

.sa-province.province-active {
  fill: var(--orange);
  filter: drop-shadow(0 0 8px rgba(217,119,6,0.45));
}

.map-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  fill: var(--grey-500);
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.04em;
}

.map-drawer {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-drawer-content { width: 100%; }

.map-drawer-prompt {
  color: var(--grey-400);
  font-size: 0.9rem;
  text-align: center;
}

.map-drawer-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grey-100);
  color: var(--grey-500);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-base);
}
.map-drawer-close:hover { background: var(--grey-200); }

.map-drawer-region {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--grey-100);
}

.map-drawer-manager {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.map-drawer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-drawer-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--grey-900);
}

.map-drawer-role {
  font-size: 0.78rem;
  color: var(--grey-500);
  margin-top: 2px;
}

.map-drawer-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 11px;
}

.map-drawer-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
}

.map-drawer-val {
  font-size: 0.86rem;
  color: var(--grey-700);
}

.map-delivery-badge {
  display: inline-block;
  background: #f0fdf4;
  color: #16a34a;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 2px 10px;
  border-radius: 100px;
  border: 1px solid #bbf7d0;
  width: fit-content;
}

.map-drawer-phone {
  font-size: 0.86rem;
  color: var(--orange);
  font-weight: 600;
}
.map-drawer-phone:hover { text-decoration: underline; }

.map-drawer-cta {
  display: block;
  text-align: center;
  margin-top: 18px;
}

@keyframes drawerFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.map-drawer.map-drawer-open .map-drawer-content {
  animation: drawerFadeIn 0.26s ease forwards;
}

/* Tertiary text-link style CTA — hero catalogue link */
.btn-text-white {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: none;
  padding-left: 0;
  padding-right: 0;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.25);
  text-underline-offset: 3px;
}

.btn-text-white:hover {
  color: var(--white);
  text-decoration-color: rgba(255,255,255,0.7);
}


/* ============================================================
   PACK SIZES SECTION
============================================================ */
.packs-section {
  padding: 80px 0;
  background: var(--white);
}

.packs-grid {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.pack-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pack-img {
  object-fit: contain;
  width: 100%;
  transition: transform 0.3s ease;
}

.pack-item:nth-child(1) .pack-img { max-height: 320px; max-width: 180px; }
.pack-item:nth-child(2) .pack-img { max-height: 260px; max-width: 150px; }
.pack-item:nth-child(3) .pack-img { max-height: 210px; max-width: 130px; }
.pack-item:nth-child(4) .pack-img { max-height: 170px; max-width: 110px; }
.pack-item:nth-child(5) .pack-img { max-height: 130px; max-width: 90px; }

.pack-item:hover .pack-img {
  transform: translateY(-6px);
}

.pack-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .packs-grid { gap: 16px; }
  .pack-item:nth-child(1) .pack-img { max-height: 200px; max-width: 110px; }
  .pack-item:nth-child(2) .pack-img { max-height: 165px; max-width: 95px; }
  .pack-item:nth-child(3) .pack-img { max-height: 135px; max-width: 80px; }
  .pack-item:nth-child(4) .pack-img { max-height: 110px; max-width: 68px; }
  .pack-item:nth-child(5) .pack-img { max-height: 85px; max-width: 55px; }
}


/* ============================================================
   PACK SIZES SECTION
============================================================ */
.packs-section {
  padding: 80px 0;
  background: var(--white);
}

.packs-grid {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.pack-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pack-img {
  object-fit: contain;
  width: 100%;
  transition: transform 0.3s ease;
}

.pack-item:nth-child(1) .pack-img { max-height: 320px; max-width: 180px; }
.pack-item:nth-child(2) .pack-img { max-height: 260px; max-width: 150px; }
.pack-item:nth-child(3) .pack-img { max-height: 210px; max-width: 130px; }
.pack-item:nth-child(4) .pack-img { max-height: 170px; max-width: 110px; }
.pack-item:nth-child(5) .pack-img { max-height: 130px; max-width: 90px; }

.pack-item:hover .pack-img {
  transform: translateY(-6px);
}

.pack-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .packs-grid { gap: 16px; }
  .pack-item:nth-child(1) .pack-img { max-height: 200px; max-width: 110px; }
  .pack-item:nth-child(2) .pack-img { max-height: 165px; max-width: 95px; }
  .pack-item:nth-child(3) .pack-img { max-height: 135px; max-width: 80px; }
  .pack-item:nth-child(4) .pack-img { max-height: 110px; max-width: 68px; }
  .pack-item:nth-child(5) .pack-img { max-height: 85px; max-width: 55px; }
}


/* ============================================================
   PACK SIZES — CORRECTED LAYOUT
============================================================ */
.packs-section {
  padding: 80px 0;
  background: var(--white);
}

.packs-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.pack-item {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.pack-item:nth-child(1) .pack-img { height: 300px; width: auto; max-width: 180px; }
.pack-item:nth-child(2) .pack-img { height: 240px; width: auto; max-width: 150px; }
.pack-item:nth-child(3) .pack-img { height: 190px; width: auto; max-width: 130px; }
.pack-item:nth-child(4) .pack-img { height: 155px; width: auto; max-width: 110px; }
.pack-item:nth-child(5) .pack-img { height: 115px; width: auto; max-width: 90px; }

.pack-img {
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}

.pack-item:hover .pack-img { transform: translateY(-6px); }

.pack-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .packs-grid { gap: 18px; padding: 0 16px 8px; }
  .pack-item:nth-child(1) .pack-img { height: 180px; }
  .pack-item:nth-child(2) .pack-img { height: 145px; }
  .pack-item:nth-child(3) .pack-img { height: 115px; }
  .pack-item:nth-child(4) .pack-img { height: 92px; }
  .pack-item:nth-child(5) .pack-img { height: 70px; }
}


/* ============================================================
   PACK SIZES — CORRECTED LAYOUT
============================================================ */
.packs-section {
  padding: 80px 0;
  background: var(--grey-100);
}

.packs-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.pack-item {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.pack-item:nth-child(1) .pack-img { height: 300px; width: auto; max-width: 180px; }
.pack-item:nth-child(2) .pack-img { height: 240px; width: auto; max-width: 150px; }
.pack-item:nth-child(3) .pack-img { height: 190px; width: auto; max-width: 130px; }
.pack-item:nth-child(4) .pack-img { height: 155px; width: auto; max-width: 110px; }
.pack-item:nth-child(5) .pack-img { height: 115px; width: auto; max-width: 90px; }

.pack-img {
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}

.pack-item:hover .pack-img { transform: translateY(-6px); }

.pack-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .packs-grid { gap: 18px; padding: 0 16px 8px; }
  .pack-item:nth-child(1) .pack-img { height: 180px; }
  .pack-item:nth-child(2) .pack-img { height: 145px; }
  .pack-item:nth-child(3) .pack-img { height: 115px; }
  .pack-item:nth-child(4) .pack-img { height: 92px; }
  .pack-item:nth-child(5) .pack-img { height: 70px; }
}

/* ============================================================
   PEOPLE TEXT-ONLY CARDS
   ============================================================ */
.people-grid--text {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.people-card--text {
  margin: 0;
  padding: 0;
}

.people-text-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  background: var(--grey-100);
  padding: 1.5rem 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.people-text-card:hover {
  background: var(--grey-200, #e5e5e5);
  transform: translateY(-4px);
}

.people-text-role {
  display: block;
  font-family: var(--font-heading, var(--font-body));
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--grey-900, #111);
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}

.people-text-name {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  color: var(--grey-600, #555);
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.people-text-location {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  color: var(--grey-500, #777);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

@media (max-width: 768px) {
  .people-grid--text {
    grid-template-columns: repeat(2, 1fr);
  }
  .people-text-card {
    aspect-ratio: auto;
    padding: 1.5rem 1rem;
    min-height: 120px;
  }
}

@media (max-width: 480px) {
  .people-grid--text {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .people-text-card {
    aspect-ratio: auto;
    min-height: 100px;
  }
}

/* People text card single-line override */
.people-text-card {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--grey-700, #444);
  line-height: 1.5;
}
.people-text-card strong {
  font-weight: 700;
  color: var(--grey-900, #111);
}

/* Warehouse grid responsive */
@media (max-width: 1100px) {
  .warehouse-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 640px) {
  .warehouse-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 420px) {
  .warehouse-grid { grid-template-columns: 1fr !important; }
}

/* Flip-hint standout styling */
.flip-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #D97706;
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.28);
  text-transform: uppercase;
  animation: flip-hint-pulse 2.4s ease-in-out infinite;
}

.flip-hint svg {
  fill: #fff;
  vertical-align: middle;
}

@keyframes flip-hint-pulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 2px 8px rgba(234, 88, 12, 0.28); }
  50% { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(234, 88, 12, 0.4); }
}

/* Flip-hint full width + hide availability */
.team-card-footer {
  flex-direction: column;
  align-items: stretch;
}
.team-card-footer .flip-hint {
  display: flex;
  width: 100%;
  justify-content: center;
  color: #fff !important;
}
.team-card-footer .flip-hint svg {
  fill: #fff !important;
}
.team-availability {
  display: none !important;
}

/* Hide hero canvas floating dots */
#hero-canvas { display: none !important; }

/* brand swiper (three sliders on mobile) */
.brand-block { margin-top: 48px; }
.brand-block--last { margin-bottom: 90px; }
.brand-heading {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 20px;
}
.brand-item {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
}
.brand-item img {
  width: auto !important;
  object-fit: contain;
  display: block;
  max-width: 100%;
}
.brand-label {
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-pagination { display: none; }
@media (min-width: 768px) {
  .brand-swiper,
  .brand-swiper .swiper-wrapper {
    display: flex !important;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    transform: none !important;
  }
  .brand-swiper .swiper-slide {
    width: auto !important;
    height: auto !important;
    flex-shrink: unset !important;
  }
}
@media (max-width: 767px) {
  .brand-swiper { position: relative; padding-bottom: 50px!important; overflow: hidden; }
  .brand-swiper .swiper-slide { padding: 0 8px; }
  .brand-pagination {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    text-align: center;
  }
  .brand-pagination .swiper-pagination-bullet-active { background: #D97706 !important; }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
============================================================ */
.wa-float {
  position: fixed;
  right: clamp(16px, 2.5vw, 28px);
  bottom: clamp(16px, 2.5vw, 28px);
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.wa-float-label {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.wa-float:hover .wa-float-label,
.wa-float:focus-visible .wa-float-label {
  opacity: 1;
  transform: translateX(0);
}

.wa-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.22), 0 2px 4px rgba(0,0,0,0.12);
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.wa-float:hover .wa-float-btn {
  background: #1EBE5A;
  transform: scale(1.06);
  box-shadow: 0 6px 22px rgba(0,0,0,0.28), 0 2px 6px rgba(0,0,0,0.14);
}

.wa-float:active .wa-float-btn {
  transform: scale(0.97);
}

.wa-float:focus-visible {
  outline: none;
}

.wa-float:focus-visible .wa-float-btn {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.wa-float-btn svg {
  width: 30px;
  height: 30px;
  display: block;
}

@media (max-width: 767px) {
  .wa-float-btn {
    width: 52px;
    height: 52px;
  }
  .wa-float-btn svg {
    width: 27px;
    height: 27px;
  }
  /* No room for the tooltip alongside the button on small screens */
  .wa-float-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float-label,
  .wa-float-btn {
    transition: none;
  }
  .wa-float:hover .wa-float-btn,
  .wa-float:active .wa-float-btn {
    transform: none;
  }
}

@media print {
  .wa-float { display: none; }
}
