:root {
  --brand:     #E8836A;
  --brand-dim: #c4614a;
  --black:     #0a0a0a;
  --dark:      #111111;
  --card:      #181818;
  --border:    rgba(255,255,255,0.09);
  --border-lo: rgba(255,255,255,0.06);
  --text:      #ffffff;
  --muted:     #9a9a9a;
  --muted-dim: #6e6e6e;
  --light:     #f4f2ef;
  --font-cond: 'Barlow Condensed', 'Arial Narrow', 'Helvetica Neue Condensed', Arial, sans-serif;
  --nav-h:     68px;
  --bar-h:     0px;
}

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

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

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(232,131,106,0.18);
  padding-bottom: var(--bar-h);
}

body.nav-open { overflow: hidden; }

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

::selection { background: var(--brand); color: var(--black); }

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

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ── TYPOGRAPHY ── */
.label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brand);
}

h1, h2, h3 {
  font-family: var(--font-cond);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.98;
  overflow-wrap: break-word;
}

/* anchors clear the fixed nav */
section[id] { scroll-margin-top: calc(var(--nav-h) + 8px); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--brand);
  color: var(--black);
  padding: 0.8rem 1.2rem;
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 max(5vw, env(safe-area-inset-left));
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-lo);
  transition: background 0.3s, border-color 0.3s;
}

nav.scrolled {
  background: rgba(10,10,10,0.98);
  border-bottom-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
  min-height: 44px;
}

.nav-logo img {
  height: 30px;
  width: auto;
}

.nav-wordmark {
  font-family: var(--font-cond);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}
.nav-wordmark span { color: var(--brand); }

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

.nav-links a {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  color: var(--black) !important;
  background: var(--brand);
  padding: 0 1.4rem;
  min-height: 42px !important;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--brand-dim) !important; color: var(--black) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  margin-right: -10px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--text);
}
.nav-toggle span {
  display: block;
  position: relative;
  width: 22px; height: 2px;
  background: currentColor;
  transition: background 0.2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px; height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, top 0.25s ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }

body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after  { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0;
  z-index: 190;
  background: rgba(10,10,10,0.99);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 2rem max(6vw, env(safe-area-inset-left)) calc(2rem + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  overflow-y: auto;
}

body.nav-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a.m-link {
  font-family: var(--font-cond);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-lo);
}

.mobile-menu .m-contact {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.mobile-menu .m-contact a {
  font-family: var(--font-cond);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  word-break: break-word;
}
.mobile-menu .m-contact a[href^="mailto"] { text-transform: none; letter-spacing: 0.04em; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 3rem) 5vw 6vh;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 45%, rgba(232,131,106,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 15% 85%, rgba(232,131,106,0.05) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: end;
}

.hero-number {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--muted-dim);
  margin-bottom: 1.6rem;
}

.hero-h1 {
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  color: var(--text);
  margin-bottom: 1.4rem;
}

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

.hero-sub {
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.4rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0 1.9rem;
  min-height: 48px;
  border-radius: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--brand);
  color: var(--black);
  border: 1px solid var(--brand);
}
.btn-primary:hover { background: var(--brand-dim); border-color: var(--brand-dim); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.16);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.4); transform: translateY(-1px); }

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-self: end;
  padding-bottom: 0.4rem;
  min-width: 0;
}

/* ── HERO GALLERY ── */
.hg-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--border-lo);
  background: #0a0a0a;
}

.hg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hg-img.is-active { opacity: 1; }

.hg-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 2rem 1.2rem 0.8rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}

.hg-dots {
  display: flex;
  gap: 0.1rem;
  flex-shrink: 0;
  pointer-events: auto;
}

.hg-dot {
  width: 28px;
  height: 28px;
  padding: 10px;
  margin: 0;
  border: 0;
  background: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.hg-dot::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.3s;
}

.hg-dot:hover::before { background: rgba(255,255,255,0.75); }
.hg-dot.is-active::before { background: var(--brand); }
.hg-dot:focus-visible { outline: 2px solid var(--brand); outline-offset: -2px; }

/* ── TICKER ── */
.ticker {
  background: var(--brand);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.ticker-inner {
  display: inline-flex;
  animation: ticker 34s linear infinite;
  will-change: transform;
}

.ticker-inner span {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 2.2rem;
}

.ticker-inner span.sep { color: rgba(0,0,0,0.35); padding: 0; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION WRAPPER ── */
.section { padding: 7rem 5vw; position: relative; z-index: 2; }
.inner   { max-width: 1200px; margin: 0 auto; }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  gap: 2rem;
}

.section-header h2 { font-size: clamp(2.2rem, 5vw, 4rem); color: var(--text); }

.section-count {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--muted-dim);
  white-space: nowrap;
}

/* ── ABOUT ── */
#about {
  background: var(--dark);
  border-top: 1px solid var(--border-lo);
  border-bottom: 1px solid var(--border-lo);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-left h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 1.5rem;
  color: var(--text);
}

.about-left p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-lo);
}

.about-cell {
  background: var(--dark);
  padding: 2.1rem 1.7rem;
  transition: background 0.2s;
}

.about-cell:hover { background: var(--card); }

.about-cell svg {
  width: 24px; height: 24px;
  stroke: var(--brand);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 1.1rem;
}

.about-cell h4 {
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.about-cell p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

/* ── EQUIPMENT ── */
#equipment { background: var(--black); }

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border-lo);
}

.eq-card {
  background: var(--black);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}

.eq-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--brand);
  transition: height 0.4s ease;
  z-index: 3;
}

.eq-card:hover { background: var(--card); }
.eq-card:hover::before { height: 100%; }

.eq-media {
  position: relative;
  background: #ffffff;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.eq-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.4rem;
  transition: transform 0.5s ease;
}

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

.eq-body {
  padding: 2rem 2.2rem 2.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.eq-card h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  color: var(--text);
  margin-bottom: 0.6rem;
}

.eq-card-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 1.6rem;
  line-height: 1.65;
  flex: 1;
}

.eq-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-lo);
  border: 1px solid var(--border-lo);
}

.eq-price-cell { background: var(--dark); padding: 1.05rem 1.2rem; }

.eq-price-label {
  font-family: var(--font-cond);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-bottom: 0.3rem;
}

.eq-price-val {
  font-family: var(--font-cond);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.eq-enquire {
  margin-top: 1.2rem;
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  background: none;
  border: 0;
  padding: 0.6rem 0;
  cursor: pointer;
  text-align: left;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  transition: color 0.2s, gap 0.2s;
}
.eq-enquire::after { content: '→'; transition: transform 0.2s; }
.eq-enquire:hover { color: var(--brand); gap: 0.8rem; }

.eq-footnote {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}

.eq-terms {
  margin-top: 1.4rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted-dim);
  max-width: 780px;
  line-height: 1.7;
}

/* ── ENQUIRY ── */
#enquiry {
  background: var(--dark);
  border-top: 1px solid var(--border-lo);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: start;
}

.enquiry-left h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 1.5rem;
}

.enquiry-left > p {
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 2.2rem;
}

.contact-list li { display: flex; align-items: center; gap: 1rem; }

.contact-list strong {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  min-width: 62px;
}

.contact-list a, .contact-list span.val {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: color 0.2s;
  word-break: break-word;
}

.contact-list a:hover { color: var(--text); }

.card-img {
  border: 1px solid var(--border-lo);
  border-radius: 2px;
  overflow: hidden;
}

/* ── FORM ── */
.form-wrap {
  background: var(--card);
  border: 1px solid var(--border-lo);
  padding: 2.4rem;
  border-radius: 2px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

input, select, textarea {
  background: var(--dark);
  border: 1px solid var(--border-lo);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  /* 16px minimum — stops iOS Safari zooming on focus */
  font-size: 16px;
  font-weight: 300;
  padding: 0.8rem 1rem;
  min-height: 48px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

input::placeholder, textarea::placeholder { color: #4a4a4a; }

input:focus, select:focus, textarea:focus {
  border-color: var(--brand);
  background: #0d0d0d;
}

select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

select option { background: var(--dark); color: var(--text); }

textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.form-submit {
  margin-top: 1.2rem;
  width: 100%;
  font-family: var(--font-cond);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--brand);
  color: var(--black);
  border: none;
  min-height: 54px;
  padding: 1rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.form-submit:hover { background: var(--brand-dim); transform: translateY(-1px); }
.form-submit:active { transform: translateY(0); }

/* ── HONEYPOT ──
   A decoy field no human ever sees. Bots fill in every input they find, so
   anything that arrives with this field filled is dropped by the server.
   Positioned off-screen rather than display:none — some bots skip fields that
   are explicitly hidden, and this way they take the bait. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted-dim);
  margin-top: 0.9rem;
  text-align: center;
  font-weight: 300;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border-lo);
  padding: 3.5rem 5vw 3rem;
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.footer-brand img { height: 38px; width: auto; }
.footer-brand span {
  font-family: var(--font-cond);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text);
}
.footer-brand span em { font-style: normal; color: var(--brand); }

.footer-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.9rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; }

.footer-col ul li a,
.footer-contact li {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  min-height: 44px;
}

.footer-col ul li a:hover, .footer-contact a:hover { color: var(--text); }
.footer-contact a { color: inherit; text-decoration: none; }

.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-lo);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.76rem; font-weight: 300; color: #565656; }

/* ── MOBILE STICKY ACTION BAR ── */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 180;
  background: rgba(10,10,10,0.97);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 0.6rem 0.7rem calc(0.6rem + env(safe-area-inset-bottom));
  gap: 0.6rem;
}

.mobile-bar a {
  flex: 1;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  min-height: 48px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.mobile-bar .mb-call {
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.18);
}

.mobile-bar .mb-quote { color: var(--black); background: var(--brand); }

.mobile-bar svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.8; fill: none; }

/* ── TOAST ── */
.toast {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(1.2rem + var(--bar-h) + env(safe-area-inset-bottom));
  max-width: 420px;
  margin-left: auto;
  background: #1a1a1a;
  border: 1px solid var(--brand);
  border-left-width: 3px;
  color: #fff;
  padding: 1rem 1.3rem;
  font-size: 0.9rem;
  line-height: 1.5;
  z-index: 250;
  border-radius: 2px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

/* ── ANIMATIONS ── */
.js .fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid  { gap: 3.5rem; }
  .enquiry-grid { gap: 3rem; }
  .eq-body { padding: 1.8rem; }
}

@media (max-width: 900px) {
  :root { --bar-h: 68px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-bar { display: flex; }

  #hero { padding-top: calc(var(--nav-h) + 2.5rem); padding-bottom: 4rem; align-items: center; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-sub { max-width: 560px; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { flex: 1 1 auto; min-width: 160px; }

  .hero-right { padding-bottom: 0; }
  .hg-bar { padding: 1.8rem 1rem 0.7rem; }
  .hg-caption { font-size: 0.66rem; letter-spacing: 0.16em; }

  .about-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .equipment-grid { grid-template-columns: 1fr; }
  .enquiry-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-logo  { grid-column: 1 / -1; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 640px) {
  .section { padding: 4.5rem 6vw; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 0.6rem; margin-bottom: 2.5rem; }
  .about-right { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-wrap { padding: 1.6rem 1.4rem; }
  .eq-body { padding: 1.6rem 1.5rem 1.8rem; }
  .eq-media img { padding: 1.1rem; }
  .hero-h1 { font-size: clamp(2.6rem, 12vw, 4.2rem); }
  .hero-actions { width: 100%; }
  .hero-actions a { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .nav-wordmark { font-size: 1.05rem; }
}

@media (max-width: 380px) {
  .nav-wordmark { display: none; }
  .eq-price-val { font-size: 1.15rem; }
}

/* Short landscape phones */
@media (max-height: 520px) and (orientation: landscape) {
  #hero { min-height: auto; padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 3rem; }
  .hero-right { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .fade-up { opacity: 1; transform: none; }
  .ticker-inner { animation: none; }
}

@media print {
  nav, .mobile-bar, .ticker, .mobile-menu, body::before { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ═══════════════════════════════════════════════════════════════
   SUB-PAGES — product landing pages, privacy, hire terms,
   thank-you and 404. Everything below is additive; the homepage
   styles above are untouched.
   ═══════════════════════════════════════════════════════════════ */

/* ── COMPACT PAGE HERO ── */
.subhero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: calc(var(--nav-h) + 4.5rem) 5vw 3.5rem;
  border-bottom: 1px solid var(--border-lo);
}

.subhero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 78% 40%, rgba(232,131,106,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 90%, rgba(232,131,106,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.subhero .inner { position: relative; z-index: 2; }

.subhero h1 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  color: var(--text);
  margin: 0.9rem 0 1.2rem;
  max-width: 20ch;
}

.subhero h1 em { font-style: normal; color: var(--brand); }

.subhero .lede {
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
}

/* ── BREADCRUMBS ── */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.crumbs a { color: var(--muted-dim); text-decoration: none; transition: color 0.2s; }
.crumbs a:hover { color: var(--brand); }
.crumbs span[aria-current] { color: var(--brand); }
.crumbs .sep { color: #3a3a3a; }

/* ── PRODUCT LAYOUT ── */
.prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.prod-media {
  background: var(--dark);
  border: 1px solid var(--border-lo);
  overflow: hidden;
}

.prod-media img { width: 100%; padding: 1.6rem; }

.prod-figcap {
  font-size: 0.76rem;
  font-weight: 300;
  color: var(--muted-dim);
  padding: 0 1.6rem 1.4rem;
  line-height: 1.6;
}

/* ── PRICE BAND ── */
.price-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-lo);
  border: 1px solid var(--border-lo);
  margin-bottom: 1.6rem;
}

.price-cell { background: var(--dark); padding: 1.4rem 1.5rem; }

.price-cell .k {
  font-family: var(--font-cond);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-bottom: 0.5rem;
}

.price-cell .v {
  font-family: var(--font-cond);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}

.price-cell .v small {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--muted-dim);
}

.price-note {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted-dim);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ── SPEC LIST ── */
.spec-list {
  border-top: 1px solid var(--border-lo);
  margin: 0 0 2rem;
}

.spec-list div {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-lo);
}

.spec-list dt {
  font-family: var(--font-cond);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.spec-list dd { font-size: 0.92rem; font-weight: 300; color: var(--text); margin: 0; }

/* ── PROSE (product copy, legal pages) ── */
.prose { max-width: 780px; }
.prose h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--text);
  margin: 3rem 0 1rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin: 2rem 0 0.7rem;
  letter-spacing: 0.06em;
}
.prose p, .prose li {
  font-size: 0.96rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}
.prose p { margin-bottom: 1.1rem; }
.prose p strong { color: var(--text); font-weight: 500; }
.prose ul, .prose ol { margin: 0 0 1.4rem 1.2rem; }
.prose li { margin-bottom: 0.55rem; padding-left: 0.3rem; }
.prose li::marker { color: var(--brand); }
.prose a { color: var(--brand); text-decoration: none; border-bottom: 1px solid rgba(232,131,106,0.35); }
.prose a:hover { border-bottom-color: var(--brand); }

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.8rem;
  font-size: 0.9rem;
}
.prose th, .prose td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-lo);
  font-weight: 300;
  color: var(--muted);
  vertical-align: top;
}
.prose th {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--dark);
}
.prose td:first-child { color: var(--text); width: 32%; }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ── LEGAL PAGE FURNITURE ── */
.legal-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border-lo);
  border: 1px solid var(--border-lo);
  margin-bottom: 3.5rem;
}

.legal-meta div { background: var(--dark); padding: 1.2rem 1.3rem; }

.legal-meta dt {
  font-family: var(--font-cond);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-bottom: 0.45rem;
}

.legal-meta dd {
  margin: 0;
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  overflow-wrap: anywhere;
}

.legal-meta dd a {
  color: var(--text);
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.88rem;
  font-weight: 500;
}
.legal-meta dd a:hover { color: var(--brand); }

.toc {
  border: 1px solid var(--border-lo);
  background: var(--dark);
  padding: 1.6rem 1.8rem;
  margin-bottom: 3.5rem;
}

.toc h2 {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 1rem;
}

.toc ol {
  list-style: none;
  counter-reset: toc;
  columns: 2;
  column-gap: 2.5rem;
  margin: 0;
}

.toc li {
  counter-increment: toc;
  break-inside: avoid;
  margin-bottom: 0.15rem;
}

.toc a {
  display: flex;
  gap: 0.7rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  text-decoration: none;
  padding: 0.35rem 0;
  border: 0;
}

.toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-cond);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted-dim);
}

.toc a:hover { color: var(--brand); }

.clause {
  scroll-margin-top: calc(var(--nav-h) + 20px);
  padding-top: 2.6rem;
  border-top: 1px solid var(--border-lo);
  margin-top: 2.6rem;
}

.clause:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }

.clause > h2 {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-top: 0;
}

.clause > h2 .n {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--brand);
  flex: none;
}

.callout {
  border-left: 2px solid var(--brand);
  background: var(--dark);
  padding: 1.2rem 1.4rem;
  margin: 0 0 1.5rem;
}

.callout p { margin: 0; font-size: 0.9rem; }
.callout p + p { margin-top: 0.7rem; }

/* ── USE-CASE CARDS ── */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--border-lo);
  border: 1px solid var(--border-lo);
}

.usecase {
  background: var(--dark);
  padding: 1.8rem 1.7rem;
  transition: background 0.25s;
}

.usecase:hover { background: var(--card); }

.usecase h3 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 0.7rem;
}

.usecase p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* ── TRUST STRIP ── */
#trust { background: var(--dark); border-top: 1px solid var(--border-lo); border-bottom: 1px solid var(--border-lo); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border-lo);
  border: 1px solid var(--border-lo);
}

.trust-cell { background: var(--black); padding: 1.7rem 1.6rem; }

.trust-cell .k {
  font-family: var(--font-cond);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.6rem;
}

.trust-cell p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ── RELATED EQUIPMENT ── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border-lo);
  border: 1px solid var(--border-lo);
}

.related-card {
  background: var(--dark);
  padding: 1.7rem 1.6rem;
  text-decoration: none;
  display: block;
  transition: background 0.25s;
}

.related-card:hover { background: var(--card); }

.related-card h3 {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.related-card p { font-size: 0.85rem; font-weight: 300; color: var(--muted); line-height: 1.7; }

.related-card .go {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
}

.related-card .go::after { content: '→'; }

/* ── SIMPLE CENTRED PAGE (thank-you, 404) ── */
.centred-page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 4rem) 6vw 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.centred-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 35%, rgba(232,131,106,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.centred-inner { position: relative; z-index: 2; max-width: 640px; }

.centred-page h1 {
  font-size: clamp(2.3rem, 7vw, 4.4rem);
  color: var(--text);
  margin: 1.1rem 0 1.3rem;
}

.centred-page h1 em { font-style: normal; color: var(--brand); }

.centred-page p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

.tick {
  width: 62px;
  height: 62px;
  margin: 0 auto;
  border: 2px solid var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tick svg { width: 28px; height: 28px; stroke: var(--brand); stroke-width: 2.2; fill: none; }

.next-steps {
  border: 1px solid var(--border-lo);
  background: var(--dark);
  padding: 1.6rem 1.8rem;
  margin: 2.4rem 0;
  text-align: left;
}

.next-steps h2 {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
}

.next-steps ol { margin: 0 0 0 1.1rem; }
.next-steps li { font-size: 0.92rem; font-weight: 300; color: var(--muted); line-height: 1.75; margin-bottom: 0.6rem; }
.next-steps li::marker { color: var(--muted-dim); }
.next-steps li:last-child { margin-bottom: 0; }

.centred-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── FOOTER ADDITIONS ── */
.footer-inner { grid-template-columns: 1.3fr 1fr 1fr 1.1fr; }

.footer-address {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted-dim);
  line-height: 1.8;
  margin-top: 1.1rem;
  font-style: normal;
}

.footer-address strong {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

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

.footer-legal a {
  font-size: 0.76rem;
  font-weight: 300;
  color: #565656;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ── SUB-PAGE RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-logo { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .prod-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .subhero { padding: calc(var(--nav-h) + 3rem) 6vw 2.8rem; }
}

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
  .toc ol { columns: 1; }
  .spec-list div { grid-template-columns: 1fr; gap: 0.25rem; }
  .price-band { grid-template-columns: 1fr; }
  .prose td:first-child { width: auto; }
  .centred-page { padding: calc(var(--nav-h) + 2.5rem) 7vw 4.5rem; }
  .centred-actions a { width: 100%; }
}

@media print {
  .subhero::before, .centred-page::before { display: none; }
  .prose a { color: #000; border: 0; }
}

/* ── HOMEPAGE FLEET CARDS: GST note, product-page links ── */
.eq-price-val .gst {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted-dim);
  white-space: nowrap;
}

.eq-card h3 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.eq-card h3 a:hover { color: var(--brand); }

.eq-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1.6rem;
  margin-top: 0.6rem;
}

.eq-details {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: none;
  padding: 0.6rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  transition: gap 0.2s;
}
.eq-details::after { content: '→'; }
.eq-details:hover { gap: 0.8rem; }

.eq-enquire { margin-top: 0; }

/* Alias anchor so /#contact (used by the Google Ads sitelinks) lands on the form */
#contact { display: block; height: 0; scroll-margin-top: calc(var(--nav-h) + 8px); }

.form-note a { color: var(--brand); text-decoration: none; border-bottom: 1px solid rgba(232,131,106,0.35); }
.form-note a:hover { border-bottom-color: var(--brand); }

.mobile-menu .m-sub { display: flex; flex-direction: column; padding: 0.3rem 0 0.6rem; }
.mobile-menu .m-sub a {
  font-family: var(--font-cond);
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
.mobile-menu .m-sub a::before { content: '—'; color: var(--muted-dim); margin-right: 0.6rem; }
.mobile-menu .m-sub a:hover { color: var(--brand); }
