/* Petro Commodities: Design System */
:root {
  --primary: #0169cc;
  --primary-dark: #0157a8;
  --black: #111111;
  --white: #ffffff;
  --soft-bg: #f7f9fb;
  --border: #e5e7eb;
  --muted: #667085;
  --overlay: rgba(17, 17, 17, 0.55);

  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;

  --container: 1320px;
  --topbar-h: 50px;
  --header-h: 80px;
  --header-h-scrolled: 68px;
  --chrome-h: calc(var(--topbar-h) + var(--header-h));
  --chrome-h-scrolled: var(--header-h-scrolled);

  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 200ms;
  --t: 350ms;
  --t-slow: 500ms;

  --shadow-header: 0 1px 0 rgba(17, 17, 17, 0.06),
    0 10px 28px rgba(17, 17, 17, 0.05);
  --shadow-card: 0 14px 36px rgba(17, 17, 17, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Layout */
.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section--soft {
  background: var(--soft-bg);
}

.section-heading {
  max-width: 40rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-number {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--primary);
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--black);
}

.section-lead {
  margin-top: 1rem;
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--muted);
}

.section-heading--center .section-lead {
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
    transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  white-space: nowrap;
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  border-color: var(--primary);
  color: var(--black);
}

.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary.on-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-secondary.on-dark:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--black);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
}

.text-link .arrow {
  transition: transform var(--t) var(--ease);
}

.text-link:hover .arrow {
  transform: translateX(4px);
}

/* Top bar + chrome */
.site-chrome {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: transparent;
  transition: background-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.topbar {
  height: var(--topbar-h);
  overflow: hidden;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: height var(--t) var(--ease), opacity var(--t) var(--ease),
    border-color var(--t) var(--ease), transform var(--t) var(--ease);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--topbar-h);
}

.topbar__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.25rem;
  min-width: 0;
}

.topbar__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: inherit;
  transition: color var(--t-fast) var(--ease);
  white-space: nowrap;
}

.topbar__contact a:hover {
  color: var(--white);
}

.topbar__contact svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.85;
}

.topbar__social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.topbar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.12);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease),
    border-color var(--t-fast) var(--ease);
}

.topbar__social a:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.18);
  border-color: var(--white);
}

.topbar__social svg {
  width: 15px;
  height: 15px;
  display: block;
}

/* Header */
.site-header {
  position: relative;
  background: transparent;
  border-bottom: none;
  transition: background-color var(--t) var(--ease), border-color var(--t) var(--ease),
    box-shadow var(--t) var(--ease);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
  transition: height var(--t) var(--ease);
}

/* Over dark hero: light chrome */
.site-chrome.is-over-hero .nav-desktop a {
  color: var(--white);
}

.site-chrome.is-over-hero .nav-desktop a:hover,
.site-chrome.is-over-hero .nav-desktop a.is-active {
  color: #9fd0ff;
}

.site-chrome.is-over-hero .nav-desktop a.is-active::after {
  background: #9fd0ff;
}

.site-chrome.is-over-hero .nav-toggle {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}

.site-chrome.is-over-hero .nav-toggle__bars span {
  background: var(--white);
}

/* Inner pages without hero image: readable dark text on transparent soft areas */
.site-chrome:not(.is-over-hero):not(.is-scrolled) {
  background: transparent;
}

.site-chrome:not(.is-over-hero):not(.is-scrolled) .topbar {
  color: var(--black);
  border-bottom-color: var(--border);
}

.site-chrome:not(.is-over-hero):not(.is-scrolled) .topbar__contact a:hover {
  color: var(--primary);
}

.site-chrome:not(.is-over-hero):not(.is-scrolled) .topbar__social a {
  background: var(--white);
  border-color: var(--border);
  box-shadow: 0 1px 4px rgba(17, 17, 17, 0.06);
}

.site-chrome:not(.is-over-hero):not(.is-scrolled) .topbar__social a:hover {
  border-color: var(--primary);
  box-shadow: 0 3px 10px rgba(1, 105, 204, 0.16);
}

.site-chrome:not(.is-over-hero):not(.is-scrolled) .site-header {
  border-bottom: none;
}

/* Scrolled state: solid nav, hide topbar */
.site-chrome.is-scrolled {
  background: var(--white);
  box-shadow: var(--shadow-header);
}

.site-chrome.is-scrolled .topbar {
  height: 0;
  opacity: 0;
  border-bottom-color: transparent;
  pointer-events: none;
}

.site-chrome.is-scrolled .site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}

.site-chrome.is-scrolled .site-header__inner {
  height: var(--header-h-scrolled);
}

.site-chrome.is-scrolled .nav-desktop a {
  color: var(--black);
}

.site-chrome.is-scrolled .nav-desktop a:hover,
.site-chrome.is-scrolled .nav-desktop a.is-active {
  color: var(--primary);
}

.site-chrome.is-scrolled .nav-desktop a.is-active::after {
  background: var(--primary);
}

.site-chrome.is-scrolled .nav-toggle {
  border-color: var(--border);
  background: var(--white);
}

.site-chrome.is-scrolled .nav-toggle__bars span {
  background: var(--black);
}

.site-chrome.is-over-hero.is-scrolled .nav-mobile {
  background: var(--white);
  border-top-color: var(--border);
}

.site-chrome.is-over-hero.is-scrolled .nav-mobile a {
  color: var(--black);
}

.site-chrome.is-over-hero .nav-mobile {
  background: rgba(17, 17, 17, 0.96);
  border-top-color: rgba(255, 255, 255, 0.12);
}

.site-chrome.is-over-hero .nav-mobile a {
  color: var(--white);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo__img {
  display: block;
  height: 60px;
  width: auto;
}

.logo__img--light {
  display: none;
}

.logo__img--dark {
  display: block;
}

/* White logo over dark hero banners */
.site-chrome.is-over-hero:not(.is-scrolled) .logo__img--light {
  display: block;
}

.site-chrome.is-over-hero:not(.is-scrolled) .logo__img--dark {
  display: none;
}

.logo--footer .logo__img {
  height: 100px;
}

.logo--footer .logo__img--light {
  display: block;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  position: relative;
  font-size: 0.875rem;
  color: var(--black);
  transition: color var(--t-fast) var(--ease);
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--primary);
}

.nav-desktop a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle__bars {
  position: relative;
  width: 18px;
  height: 12px;
}

.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--black);
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease),
    top var(--t-fast) var(--ease);
}

.nav-toggle__bars span:nth-child(1) {
  top: 0;
}
.nav-toggle__bars span:nth-child(2) {
  top: 5.5px;
}
.nav-toggle__bars span:nth-child(3) {
  top: 11px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
  top: 5.5px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
  top: 5.5px;
  transform: rotate(-45deg);
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile__inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0 1.5rem;
}

.nav-mobile a {
  padding: 0.85rem 0;
  font-size: 1.05rem;
}

.nav-mobile a.is-active {
  color: var(--primary);
  font-weight: 600;
}

.nav-mobile .btn {
  margin-top: 0.75rem;
  width: 100%;
}

/* Page hero */
.page-hero {
  padding-top: calc(var(--chrome-h) + 3rem);
  padding-bottom: 3.5rem;
  background: var(--soft-bg);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.page-hero p {
  margin-top: 1rem;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.0625rem;
}

.page-hero--image {
  position: relative;
  min-height: clamp(22rem, 52svh, 34rem);
  display: flex;
  align-items: flex-end;
  padding: 0;
  border-bottom: none;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--chrome-h) + 3.5rem);
  padding-bottom: 3.25rem;
}

.page-hero--image .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero--image h1 {
  color: var(--white);
}

.page-hero--image p {
  color: rgba(255, 255, 255, 0.84);
}

.breadcrumb--on-dark a {
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb--on-dark a:hover {
  color: var(--white);
}

.breadcrumb--on-dark span[aria-current="page"] {
  color: var(--white);
}

.breadcrumb--on-dark {
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Split media section */
.split-media {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.split-media__image {
  overflow: hidden;
  background: var(--soft-bg);
  aspect-ratio: 5 / 4;
}

.split-media__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-media__copy .intro-copy {
  margin-top: 1.25rem;
}

/* Fact strip on product pages */
.fact-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.fact-strip .label {
  display: block;
  margin-bottom: 0.35rem;
}

.fact-strip strong {
  font-size: 0.98rem;
  font-weight: 600;
}

/* Home hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--black);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: calc(var(--chrome-h) + 4rem);
  padding-bottom: 4.5rem;
}

.hero__brand {
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 7vw, 4.7rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero__text {
  margin-top: 1.35rem;
  max-width: 34rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* Intro / who we are */
.intro-grid {
  display: grid;
  gap: 2.5rem;
}

.intro-copy {
  display: grid;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.75;
}

/* Experience */
.experience {
  background: var(--soft-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.experience__panel {
  display: grid;
  gap: 2rem;
  padding: 2rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--border);
}

.experience__hero .eyebrow {
  margin-bottom: 0.85rem;
}

.experience__stat-wrap {
  margin-bottom: 1.15rem;
}

.experience__stat {
  font-size: clamp(4.2rem, 11vw, 7.2rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--primary);
}

.experience__label {
  margin-top: 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
}

.experience__copy {
  max-width: 34rem;
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.experience__points {
  display: grid;
  gap: 0.85rem;
}

.experience-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
  padding: 1.05rem 1rem;
  border: 1px solid var(--border);
  background: var(--soft-bg);
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease);
}

.experience-point:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.experience-point__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  background: var(--white);
  border: 1px solid rgba(1, 105, 204, 0.16);
  border-radius: 8px;
}

.experience-point__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.experience-point h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.experience-point p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Commodity cards */
.commodity-grid {
  display: grid;
  gap: 1.5rem;
}

.commodity-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease),
    box-shadow var(--t) var(--ease);
}

.commodity-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
}

.commodity-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--soft-bg);
}

.commodity-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}

.commodity-card:hover .commodity-card__media img {
  transform: scale(1.04);
}

.commodity-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.6rem 1.5rem 1.7rem;
}

.commodity-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  background: #eef5fc;
  border: 1px solid rgba(1, 105, 204, 0.18);
  border-radius: 8px;
  flex-shrink: 0;
}

.card-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.commodity-card__list {
  list-style: none;
  margin: 1.15rem 0 1.5rem;
  display: grid;
  gap: 0.45rem;
}

.commodity-card__list li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.9375rem;
}

.commodity-card__list li::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-top: 0.55rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary);
}

.commodity-card h3 {
  margin-top: 0.35rem;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.commodity-card p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.commodity-card .text-link {
  margin-top: auto;
}

/* Product / selected cards */
.product-grid {
  display: grid;
  gap: 1.15rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.product-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft-bg);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.2rem 1.35rem;
}

.product-card h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.product-card p {
  margin: 0.55rem 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .text-link {
  margin-top: auto;
  font-size: 0.875rem;
}

/* Category blocks on commodities page */
.category-block {
  border-bottom: 1px solid var(--border);
}

.category-block__header {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2.25rem;
  align-items: center;
}

.category-block__copy .section-title {
  margin-bottom: 0.75rem;
}

.category-block__copy .section-lead {
  margin-bottom: 1rem;
}

.category-block__detail {
  display: grid;
  gap: 0.85rem;
  max-width: 36rem;
}

.category-block__detail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.category-block__label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.category-block__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--soft-bg);
}

.category-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Category jump cards */
.jump-grid {
  display: grid;
  gap: 1.25rem;
}

.jump-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease),
    box-shadow var(--t) var(--ease);
}

.jump-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
}

.jump-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--soft-bg);
}

.jump-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}

.jump-card:hover .jump-card__media img {
  transform: scale(1.05);
}

.jump-card__body {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.3rem 1.45rem;
  position: relative;
}

.jump-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0.85rem;
  color: var(--primary);
  background: #eef5fc;
  border: 1px solid rgba(1, 105, 204, 0.16);
  border-radius: 8px;
}

.jump-card__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.jump-card__num {
  position: absolute;
  top: 1.35rem;
  right: 1.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.jump-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.jump-card p {
  margin: 0.55rem 0 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.jump-card .text-link {
  margin-top: auto;
}

/* Product showcase cards */
.showcase-grid {
  display: grid;
  gap: 1.25rem;
}

.showcase-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease),
    box-shadow var(--t) var(--ease);
}

.showcase-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
}

.showcase-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft-bg);
}

.showcase-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}

.showcase-card:hover .showcase-card__media img {
  transform: scale(1.05);
}

.showcase-card__badge {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.12);
}

.showcase-card__badge svg {
  width: 1.15rem;
  height: 1.15rem;
}

.showcase-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.2rem 1.35rem;
}

.showcase-card__cat {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.showcase-card h3 {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.showcase-card h3 a {
  color: inherit;
}

.showcase-card h3 a:hover {
  color: var(--primary);
}

.showcase-card__body > p {
  margin: 0.65rem 0 0.95rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border: 1px solid var(--border);
  background: var(--soft-bg);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.showcase-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.btn-sm {
  padding: 0.55rem 0.9rem;
  font-size: 0.8rem;
}

/* Human content panel (About) */
.human-panel {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--white);
}

.human-panel blockquote {
  margin: 1rem 0 1.25rem;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.45;
  color: var(--black);
}

.human-panel__aside {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1rem;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease);
}

.product-row__media {
  flex-shrink: 0;
  width: 5.5rem;
  height: 4.15rem;
  overflow: hidden;
  background: var(--soft-bg);
}

.product-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-row__body {
  flex: 1;
  min-width: 0;
}

.product-row:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.product-row h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

.product-row p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.925rem;
}

.product-row .arrow {
  color: var(--primary);
  transition: transform var(--t) var(--ease);
  flex-shrink: 0;
}

.product-row:hover .arrow {
  transform: translateX(4px);
}

.product-list {
  display: grid;
  gap: 0.85rem;
}

/* Global map */
.map-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--soft-bg);
  aspect-ratio: 16 / 9;
  border-radius: 4px;
}

.map-frame--glow {
  aspect-ratio: 1024 / 531;
  background: #ffffff;
  border-color: var(--border);
}

.map-visual {
  position: absolute;
  inset: 0;
}

.map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  pointer-events: none;
}

.map-frame svg.global-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  pointer-events: none;
}

.map-caption {
  margin: 0.85rem 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  max-width: none;
  white-space: normal;
}

/* Relationships / credibility list */
.points-grid {
  display: grid;
  gap: 1.5rem;
}

.point-item {
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
}

.point-item h3 {
  margin: 0.55rem 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.point-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* CTA */
.cta-section {
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cta-section p {
  margin: 1rem auto 1.75rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
}

/* Footer */
.site-footer {
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 4rem;
}

.footer-brand p {
  margin-top: 0.85rem;
  max-width: 16rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.925rem;
}

.footer-col h3 {
  margin-bottom: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.925rem;
  transition: color var(--t-fast) var(--ease);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.925rem;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.85;
}

.footer-contact a:hover svg {
  opacity: 1;
}

.footer-offices-title {
  margin-top: 1.75rem;
}

.office-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.office-item__label {
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.office-address,
.office-pending {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.55;
}

.office-pending {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

.office-grid,
.office-stack {
  display: grid;
  gap: 1rem;
}

.office-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 44rem;
  margin-inline: auto;
}

.office-card {
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--border);
  background: var(--white);
}

.office-card__label {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.office-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.75rem 0 0;
  padding: 0.35rem 0.55rem;
  border: 1px solid #c8ebd4;
  background: #f3fbf6;
  color: #128c7e;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  transition: border-color var(--t-fast) var(--ease),
    background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}

.office-wa svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: #25d366;
}

.office-wa:hover {
  border-color: #25d366;
  background: #e8f8ef;
  color: #075e54;
}

.office-card .office-address,
.office-card .office-pending {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.office-card .office-pending {
  font-style: italic;
}

.form-aside__subhead {
  margin-top: 1.75rem;
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.form-aside__intro {
  margin-bottom: 0.35rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--border);
}

.form-aside__intro .eyebrow {
  margin-bottom: 0.4rem;
}

.form-aside__intro h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.45rem, 2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.form-aside__intro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-aside__lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.925rem;
  line-height: 1.55;
}

.form-aside__reach {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.form-aside__reach .form-aside__subhead {
  margin-top: 0;
}

.form-aside .office-stack {
  margin-bottom: 0.5rem;
}

.form-aside .office-card {
  background: var(--soft-bg);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-block: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span[aria-current="page"] {
  color: var(--black);
}

/* Product detail */
.product-hero {
  padding-top: calc(var(--chrome-h) + 2.5rem);
  padding-bottom: 3rem;
  background: var(--soft-bg);
  border-bottom: 1px solid var(--border);
}

.product-layout {
  display: grid;
  gap: 2.5rem;
}

.product-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--soft-bg);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content h2 {
  margin-bottom: 0.9rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.product-content > p {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.product-content ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.product-content ul li {
  display: flex;
  gap: 0.7rem;
}

.product-content ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.55rem;
  flex-shrink: 0;
  background: var(--primary);
}

.spec-note {
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--border);
  background: var(--soft-bg);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* Forms */
.form-layout {
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
}

.form-aside {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.form-aside h2,
.form-aside h3 {
  font-weight: 600;
}

.form-aside ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-aside .contact-block {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  display: grid;
  gap: 0.75rem;
  font-size: 0.925rem;
}

.form-aside .contact-block .label {
  color: var(--muted);
  font-size: 0.8rem;
}

.contact-block--links {
  gap: 0.75rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  background: var(--soft-bg);
  color: var(--black);
  font-size: 0.925rem;
  font-weight: 500;
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease),
    background-color var(--t-fast) var(--ease);
}

.contact-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #eef5fc;
}

.enquiry-form {
  display: grid;
  gap: 1.35rem;
}

.order-form-panel {
  position: relative;
  padding: 1.75rem 1.6rem 1.85rem;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
}

.order-form-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
}

.order-form-panel__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.order-form-panel__header .eyebrow {
  margin-bottom: 0.4rem;
}

.order-form-panel__header h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.order-form-panel__header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 36rem;
}

.form-row {
  display: grid;
  gap: 1.15rem;
}

.form-row--intent-upload {
  align-items: start;
  gap: 1.25rem;
}

.form-row--intent-upload .form-group--intent,
.form-row--intent-upload .form-group--upload {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-row--intent-upload .form-label-text {
  display: block;
  margin: 0 0 0.45rem;
  min-height: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.25rem;
  color: var(--black);
}

.form-row--intent-upload .form-control-bar {
  display: flex;
  align-items: center;
  gap: 0.85rem 1.15rem;
  width: 100%;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  padding: 0 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--soft-bg);
  box-sizing: border-box;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.form-row--intent-upload .form-control-bar__text,
.form-row--intent-upload .intent-option,
.form-row--intent-upload .file-drop__btn,
.form-row--intent-upload .file-drop__name {
  font-family: var(--font) !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.form-row--intent-upload .intent-option {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--black) !important;
  box-shadow: none !important;
  min-height: 0 !important;
}

.form-row--intent-upload .intent-option input[type="radio"] {
  width: 0.95rem !important;
  height: 0.95rem !important;
  margin: 0 !important;
  flex-shrink: 0;
}

.form-row--intent-upload .file-drop--compact {
  margin: 0;
  cursor: pointer;
}

.form-row--intent-upload .file-drop__action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.form-row--intent-upload .file-drop__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.95rem;
  height: 0.95rem;
  border: 0;
  background: transparent;
  color: var(--primary);
  padding: 0;
  flex-shrink: 0;
}

.form-row--intent-upload .file-drop__icon svg {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
}

.form-row--intent-upload .file-drop__btn {
  color: var(--primary) !important;
}

.form-row--intent-upload .file-drop__name {
  color: var(--muted) !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1;
}

.form-row--intent-upload .form-error,
.form-row--intent-upload .form-hint {
  margin-top: 0.35rem;
  min-height: 1.1rem;
  font-size: 0.75rem;
  line-height: 1.35;
}

.form-group {
  min-width: 0;
}

.form-group label,
.form-group legend,
.form-label-text {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
}

.form-group fieldset,
fieldset.form-group {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.req {
  color: var(--primary);
  margin-left: 0.15rem;
}

.label-optional {
  color: var(--muted);
  font-weight: 400;
}

.form-control {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  font: inherit;
  transition: border-color var(--t-fast) var(--ease),
    box-shadow var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}

.form-control::placeholder {
  color: #98a2b3;
}

.form-control:hover {
  border-color: #d0d5dd;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(1, 105, 204, 0.14);
  outline: none;
  background: #fff;
}

.form-control--select,
select.form-control {
  appearance: none;
  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='%23667085' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
  line-height: 1.55;
}

.form-hint,
.form-error {
  margin-top: 0.45rem;
  font-size: 0.8125rem;
}

.form-hint {
  color: var(--muted);
}

.form-error {
  color: #b42318;
}

.form-group--intent .intent-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.75rem;
  max-width: none;
}

.intent-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.75rem;
}

.form-group--intent .intent-option,
.intent-option {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  min-height: 0;
  margin: 0 !important;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.95rem;
  color: var(--black);
  box-shadow: none;
  line-height: 1.2;
}

.form-group--intent .intent-option input[type="radio"],
.intent-option input[type="radio"] {
  position: static !important;
  opacity: 1 !important;
  width: 1.125rem !important;
  height: 1.125rem !important;
  margin: 0;
  padding: 0;
  pointer-events: auto;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: radio;
}

.intent-option:hover,
.intent-option.is-selected,
.intent-option:has(input:checked) {
  border-color: transparent;
  background: transparent;
  color: var(--black);
  box-shadow: none;
}

.file-drop {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 64px;
  padding: 0.85rem 1rem;
  border: 1px dashed #c8d0da;
  background: var(--soft-bg);
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease),
    background-color var(--t-fast) var(--ease);
}

.form-row--intent-upload .file-drop {
  min-height: 48px;
  height: 48px;
  max-height: 48px;
  padding: 0 0.95rem;
  border-style: solid;
  border-color: var(--border);
  gap: 0.85rem;
}

.file-drop:hover,
.file-drop:focus-within {
  border-color: var(--primary);
  background: #eef5fc;
}

.file-drop__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--primary);
  flex-shrink: 0;
}

.file-drop__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.file-drop__copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.file-drop__btn {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
}

.file-drop__name {
  color: var(--muted);
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-drop__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.form-actions {
  margin-top: 0.35rem;
  padding-top: 0.35rem;
}

.form-actions .btn {
  width: 100%;
  min-height: 52px;
}

.form-success {
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--soft-bg);
}

.form-success h2 {
  margin: 0.5rem 0 0.75rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.form-success p {
  color: var(--muted);
  max-width: 34rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Enquiry popup modal */
body.enquiry-modal-open {
  overflow: hidden;
}

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.enquiry-modal[hidden] {
  display: none;
}

.enquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.52);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}

.enquiry-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  max-height: min(92vh, 720px);
  overflow: auto;
  padding: 1.75rem 1.6rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 28px 64px rgba(17, 17, 17, 0.22);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: opacity 0.28s var(--ease), transform 0.32s var(--ease);
}

.enquiry-modal__dialog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
}

.enquiry-modal.is-open .enquiry-modal__backdrop {
  opacity: 1;
}

.enquiry-modal.is-open .enquiry-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.enquiry-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}

.enquiry-modal__close:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--soft-bg);
}

.enquiry-modal__close svg {
  width: 1.1rem;
  height: 1.1rem;
}

.enquiry-modal__header {
  padding-right: 2.5rem;
  margin-bottom: 1.35rem;
}

.enquiry-modal__header .eyebrow {
  margin-bottom: 0.35rem;
}

.enquiry-modal__header h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.45rem, 2.4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.enquiry-modal__header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.enquiry-modal__form {
  display: grid;
  gap: 1rem;
}

.enquiry-modal__form .form-group {
  margin: 0;
}

.enquiry-modal__form select.form-control {
  appearance: none;
  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='%23667085' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.4rem;
}

.enquiry-modal__submit {
  width: 100%;
  margin-top: 0.25rem;
  min-height: 50px;
}

.enquiry-modal__success {
  text-align: left;
  padding: 0.25rem 0 0.5rem;
}

.enquiry-modal__success .eyebrow {
  margin-bottom: 0.35rem;
}

.enquiry-modal__success h3 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
  font-weight: 600;
}

.enquiry-modal__success p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Legal */
.legal-banner {
  margin-bottom: 1.75rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  background: var(--soft-bg);
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-prose {
  max-width: 46rem;
  display: grid;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--black);
}

.legal-prose h2 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.legal-prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.legal-prose a {
  color: var(--primary);
}

/* Utilities */
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}

.stack-lg {
  display: grid;
  gap: 1.25rem;
}

.map-followup {
  margin: 2rem auto 0;
  text-align: center;
}

.map-followup .section-lead {
  margin-inline: auto;
}

.network-copy {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.network-copy .intro-copy {
  margin-top: 1.25rem;
}

.section--flush-top {
  padding-top: 0;
}

.label-optional {
  font-weight: 400;
  color: var(--muted);
}

.logo--footer {
  color: var(--white);
}

/* Icon cards: clean corporate grid */
.icon-grid {
  display: grid;
  gap: 1.25rem;
}

.icon-grid--3 {
  gap: 1.25rem;
}

.icon-grid--4 {
  gap: 1.25rem;
}

.icon-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 1.6rem 1.45rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease),
    box-shadow var(--t) var(--ease);
}

.icon-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
}

.icon-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}

.icon-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #e8f2fb;
  color: var(--primary);
}

.icon-card__icon svg {
  width: 22px;
  height: 22px;
}

.icon-card__num {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.icon-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--black);
}

.icon-card p {
  margin: 0;
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--muted);
}

.icon-card__accent {
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #0169cc;
  opacity: 0.06;
  pointer-events: none;
}

/* Editorial photo cards: Argus-inspired catalogue look */
.photo-grid {
  display: grid;
  gap: 1.25rem;
}

.photo-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 320px;
  border-radius: 4px;
  background: var(--black);
}

.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}

.photo-card:hover img {
  transform: scale(1.04);
}

.photo-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.48);
}

.photo-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  padding: 1.6rem 1.5rem;
  color: var(--white);
}

.photo-card__num {
  margin-bottom: 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.75);
}

.photo-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.photo-card p {
  margin: 0 0 1rem;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.photo-card__link {
  color: #fff !important;
}

.photo-card__link .arrow {
  color: #fff;
}

/* Floating action buttons */
.float-actions {
  position: fixed;
  inset: auto 0 0;
  z-index: 90;
  pointer-events: none;
}

.float-btn {
  pointer-events: auto;
  position: fixed;
  bottom: 1.35rem;
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.22);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease),
    opacity var(--t) var(--ease), visibility var(--t) var(--ease);
  animation: float-in 0.55s var(--ease) both;
}

.float-btn svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
  position: relative;
  z-index: 1;
}

.float-btn--whatsapp {
  left: 1.25rem;
  background: #25d366;
  animation-delay: 0.15s;
}

.float-btn--whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.38);
}

.float-btn__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #25d366;
  z-index: 0;
  animation: float-pulse 2.4s var(--ease) 1s infinite;
  pointer-events: none;
}

.float-btn--top {
  right: 1.25rem;
  background: var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  animation: none;
}

.float-btn--top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-btn--top:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(1, 105, 204, 0.35);
}

.float-btn--top.is-visible:hover {
  transform: translateY(-3px);
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes float-pulse {
  0% {
    opacity: 0.55;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(1.55);
  }
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}
