:root {
  --orange: #C23112;
  --teal: #016D8A;
  --black: #0A0605;
  --slate: #6A808D;
  --grey: #D0CFD4;
  --white: #FFFFFF;
  --soft: #F6F7F7;
  --ink: #171313;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(10, 6, 5, 0.18);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(208, 207, 212, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  color: var(--black);
}

.brand img {
  width: clamp(170px, 20vw, 236px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  font-weight: 800;
  text-decoration: none;
  color: var(--black);
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 850;
  text-decoration: none;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(10, 6, 5, 0.18);
}

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

.button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

.button-full {
  width: 100%;
}

.dark {
  color: var(--white);
  background: var(--black);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.78fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(10, 6, 5, 0.96) 0%, rgba(10, 6, 5, 0.84) 48%, rgba(10, 6, 5, 0.60) 100%),
    url("https://blastoffsolutions.co.nz/wp-content/uploads/2026/07/goliath-portal-crane-steel-restoration-heritage-way-gallery-1.webp") center/cover;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dark .eyebrow,
.quote-card .eyebrow {
  color: #65C4D6;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.25rem, 8vw, 6.9rem);
  font-weight: 950;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 930;
}

h3 {
  font-size: 1.18rem;
  font-weight: 900;
}

p {
  margin: 0;
}

.hero-lede {
  max-width: 700px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-points span,
.trust-bar span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.quote-card {
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow);
}

.ghl-quote-card {
  overflow: hidden;
  padding: 0;
  background: var(--white);
}

.ghl-form-iframe {
  display: block;
  width: 100%;
  min-height: 935px;
  border: 0;
  border-radius: var(--radius);
}

.quote-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  color: var(--black);
}

.lead-form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: #3A3331;
  font-size: 0.88rem;
  font-weight: 850;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--grey);
  border-radius: 6px;
  padding: 10px 12px;
  background: var(--white);
  color: var(--black);
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(1, 109, 138, 0.18);
  border-color: var(--teal);
}

.form-note {
  color: #625A57;
  font-size: 0.84rem;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 104px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.06);
}

.trust-item > div {
  display: grid;
  gap: 4px;
  max-width: 190px;
}

.trust-item strong {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.15;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  line-height: 1.3;
}

.trust-item svg {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.trust-item-site-safe img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 3px;
}

.section {
  padding: clamp(56px, 8vw, 100px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.left {
  margin-inline: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  margin-top: 14px;
  color: #625A57;
  font-size: 1.05rem;
}

.dark .section-heading p:not(.eyebrow),
.dark p {
  color: rgba(255, 255, 255, 0.80);
}

.service-grid,
.project-grid,
.testimonial-grid,
.technical-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card,
.project-card,
blockquote {
  overflow: hidden;
  border: 1px solid rgba(208, 207, 212, 0.9);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card img,
.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--grey);
}

.service-card h3,
.service-card p {
  padding-inline: 18px;
}

.service-card h3 {
  padding-top: 18px;
}

.service-card p {
  padding-top: 8px;
  padding-bottom: 20px;
  color: #625A57;
}

.proof-section {
  background: var(--soft);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.proof-strip figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--black);
}

.proof-strip img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.proof-strip figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(10, 6, 5, 0.78);
  font-weight: 900;
}

.featured-project {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
}

.featured-project-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 44px);
  color: var(--white);
  background: var(--black);
}

.featured-project-intro h3 {
  margin-top: 10px;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

.featured-project-intro > p:not(.eyebrow) {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.project-specs {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.project-specs div {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.project-specs dt {
  color: #65C4D6;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-specs dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.featured-project .story-viewport {
  min-height: 0;
}

.featured-project .story-slide img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: var(--black);
}

.featured-project .story-slide figcaption {
  min-height: 86px;
}

.featured-project .story-arrow {
  top: calc((100% - 86px) / 2);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.65fr);
  gap: 40px;
  align-items: center;
  padding: clamp(54px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.split > div:first-child {
  max-width: 760px;
}

.split p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 1.1rem;
}

.process-mini {
  display: grid;
  gap: 12px;
}

.process-mini div,
.technical-grid div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.process-mini strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
}

.goliath-story {
  padding: clamp(56px, 8vw, 100px) 0;
  background: var(--white);
}

.goliath-story-heading,
.goliath-story-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: clamp(18px, 5vw, 72px);
}

.goliath-story-heading {
  max-width: 880px;
  margin-left: 0;
}

.goliath-story-heading h2 {
  margin-top: 10px;
}

.goliath-story-heading > p:not(.eyebrow) {
  max-width: 730px;
  margin-top: 16px;
  color: #625A57;
  font-size: 1.05rem;
}

.goliath-scroll-hint {
  color: var(--teal) !important;
  font-size: 0.88rem !important;
  font-weight: 900;
}

.goliath-gallery {
  display: grid;
  grid-auto-columns: minmax(300px, 43vw);
  grid-auto-flow: column;
  gap: 16px;
  max-width: 1460px;
  margin: 30px auto 0;
  padding: 0 clamp(18px, 5vw, 72px) 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: clamp(18px, 5vw, 72px);
  scrollbar-color: var(--teal) var(--soft);
  scrollbar-width: thin;
}

.goliath-gallery::-webkit-scrollbar {
  height: 9px;
}

.goliath-gallery::-webkit-scrollbar-track {
  background: var(--soft);
}

.goliath-gallery::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--teal);
}

.goliath-gallery-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  background: var(--white);
  scroll-snap-align: start;
}

.goliath-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.goliath-gallery-item figcaption {
  min-height: 74px;
  padding: 13px 16px 15px;
}

.goliath-gallery-item strong,
.goliath-gallery-item span {
  display: block;
}

.goliath-gallery-item strong {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.goliath-gallery-item span {
  margin-top: 3px;
  color: #625A57;
  font-size: 0.9rem;
}

.goliath-story-footer {
  margin-top: 22px;
}

.goliath-quote {
  max-width: 760px;
  margin: 0 0 22px;
  padding: 0 0 0 18px;
  border: 0;
  border-left: 3px solid var(--orange);
  background: transparent;
}

.goliath-quote p {
  color: #2D2725;
}

.text-link {
  color: var(--teal);
  font-weight: 900;
}

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

.story-card {
  display: flex;
  flex-direction: column;
}

.story-carousel {
  position: relative;
  background: var(--soft);
}

.story-viewport {
  position: relative;
  min-height: 385px;
  padding: 0;
}

.story-slide {
  display: none;
  margin: 0;
}

.story-slide.is-active {
  display: block;
}

.story-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--grey);
}

.story-slide figcaption {
  min-height: 104px;
  padding: 14px 18px 18px;
  background: var(--white);
  border-bottom: 1px solid rgba(208, 207, 212, 0.72);
}

.story-slide figcaption strong,
.story-slide figcaption span {
  display: block;
}

.story-slide figcaption strong {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story-slide figcaption span {
  margin-top: 4px;
  color: #625A57;
  font-size: 0.92rem;
  line-height: 1.35;
}

.story-arrow {
  position: absolute;
  top: calc((100% - 104px) / 2);
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.60);
  border-radius: 50%;
  color: var(--white);
  background: rgba(10, 6, 5, 0.72);
  font-size: 1.1rem;
  font-weight: 950;
}

.story-prev {
  left: 12px;
}

.story-next {
  right: 12px;
}

.story-dots {
  position: absolute;
  left: 50%;
  top: calc(100% - 136px);
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(10, 6, 5, 0.62);
}

.story-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.story-dot.is-active {
  background: var(--orange);
}

.project-copy {
  padding: 18px 18px 20px;
}

.project-copy p {
  margin-top: 8px;
  color: #625A57;
}

.project-copy a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
}

.testimonial-section {
  background: var(--soft);
}

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 56px;
  row-gap: 38px;
  max-width: 1180px;
  margin: 0 auto;
}

.why-grid article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 0;
  border: 0;
  background: transparent;
}

.why-icon {
  display: block;
  width: 34px;
  height: 34px;
  color: var(--orange);
}

.why-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.why-number {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.why-grid h3 {
  margin: 0;
  font-size: 1.08rem;
}

.why-grid p {
  margin: 9px 0 0;
  color: var(--slate);
  font-size: 0.969rem;
}

.why-grid p strong {
  color: var(--ink);
}

.why-section .section-heading > p:last-child strong {
  color: var(--ink);
}

.team-section {
  padding-bottom: 0;
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  gap: clamp(38px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.team-photo {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
}

.team-photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.team-photo-placeholder {
  position: absolute;
  inset: 0;
  padding: 24px;
  border: 2px dashed rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  place-content: center;
  text-align: center;
}

.team-photo-placeholder:not([hidden]) {
  display: grid;
}

.team-copy .eyebrow {
  color: #FF9057;
}

.team-copy h2 {
  max-width: 620px;
  margin: 0 0 22px;
  color: var(--white);
  font-size: 2rem;
}

.team-copy p:not(.eyebrow) {
  max-width: 54ch;
  margin: 0 0 16px;
  color: #B8C2C8;
  font-size: 0.969rem;
}

.team-copy p strong {
  color: var(--white);
}

.team-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin: 48px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.team-trust-strip > div {
  min-width: 0;
  padding: 24px 22px 28px;
}

.team-trust-strip > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.team-trust-strip strong,
.team-trust-strip span {
  display: block;
}

.team-trust-strip strong {
  color: var(--white);
  font-size: 0.813rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.team-trust-strip span {
  margin-top: 7px;
  color: #8D9AA2;
  font-size: 0.781rem;
  line-height: 1.35;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  display: flex;
  min-width: 0;
  min-height: 270px;
  flex-direction: column;
  padding: 26px 24px;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  background: var(--white);
}

.testimonial-stars {
  color: var(--orange);
  font-size: 0.875rem;
  letter-spacing: 0.16em;
  line-height: 1;
}

.testimonial-card blockquote {
  overflow: visible;
  margin: 18px 0 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.testimonial-card blockquote p {
  margin: 0;
  color: var(--ink);
  font-size: 0.938rem;
  line-height: 1.55;
}

.testimonial-attribution {
  margin-top: auto;
}

.testimonial-attribution strong,
.testimonial-attribution span {
  display: block;
}

.testimonial-attribution strong {
  color: var(--black);
  font-size: 0.875rem;
}

.testimonial-attribution span {
  margin-top: 3px;
  color: var(--teal);
  font-size: 0.781rem;
  font-weight: 700;
}

.review-divider {
  display: flex;
  max-width: 1180px;
  align-items: center;
  gap: 18px;
  margin: 46px auto 0;
  color: var(--slate);
  text-align: center;
}

.review-divider > span {
  min-width: 0;
  height: 1px;
  flex: 1 1 auto;
  background: var(--grey);
}

.review-divider strong {
  flex: 0 1 auto;
  font-size: 0.688rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.review-fallback {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px auto 20px;
  text-align: center;
}

.review-fallback span {
  color: var(--orange);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
}

.review-fallback strong {
  color: var(--ink);
  font-size: 0.906rem;
}

.review-feed-container {
  overflow-y: auto;
  width: 100%;
  max-width: 1180px;
  min-height: 420px;
  max-height: 860px;
  margin: 0 auto;
  padding: 26px;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  background: var(--white);
}

.lc_reviews_widget {
  display: block;
  min-height: 420px;
  border: 0;
}

.testimonial-cta {
  display: flex;
  max-width: 1180px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 24px auto 0;
  padding: 26px 30px;
  border: 1px solid var(--grey);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  background: var(--white);
}

.testimonial-cta h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.188rem;
}

.testimonial-cta p {
  max-width: 690px;
  margin: 7px 0 0;
  color: var(--slate);
  font-size: 0.906rem;
}

.testimonial-cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.testimonial-cta .button-secondary {
  border-color: var(--slate);
  color: var(--ink);
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 170px;
  padding: 20px;
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  background: var(--soft);
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  color: var(--black);
  font-size: 1.1rem;
}

.steps span {
  margin-top: 10px;
  color: #625A57;
}

.technical {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: 36px;
  align-items: center;
}

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

.technical-grid div {
  grid-template-columns: 130px 1fr;
}

.technical-grid strong {
  color: var(--white);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

details {
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--black);
  font-weight: 900;
}

details p {
  padding: 0 20px 20px;
  color: #625A57;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px);
}

.final-cta div:first-child {
  max-width: 760px;
}

.final-cta p:not(.eyebrow) {
  margin-top: 12px;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  display: grid;
  gap: 8px;
  padding: 28px clamp(18px, 5vw, 72px) 90px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--black);
}

.footer img {
  width: 180px;
  height: auto;
  filter: none;
}

.footer a {
  color: var(--white);
}

.mobile-sticky {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
  box-shadow: 0 -10px 32px rgba(10, 6, 5, 0.24);
}

.mobile-sticky a {
  min-height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 950;
  text-decoration: none;
}

.mobile-sticky a:last-child {
  background: var(--orange);
}

@media (max-width: 1040px) {
  .hero,
  .split,
  .technical {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .trust-bar,
  .service-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .goliath-gallery {
    grid-auto-columns: minmax(300px, 63vw);
  }
}

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

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

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

  .team-trust-strip > div + div {
    border-left: 0;
  }

  .team-trust-strip > div:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

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

  .testimonial-cta {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .hero,
  .hero-copy,
  .hero-form {
    min-width: 0;
    width: 100%;
  }

  .featured-project {
    grid-template-columns: 1fr;
  }

  .featured-project-intro {
    padding: 26px 22px;
  }

  .featured-project .story-slide img {
    aspect-ratio: 4 / 5;
  }

  .goliath-story-heading,
  .goliath-story-footer {
    padding-inline: 18px;
  }

  .goliath-gallery {
    grid-auto-columns: minmax(276px, 84vw);
    gap: 12px;
    margin-top: 24px;
    padding-inline: 18px;
    scroll-padding-inline: 18px;
  }

  .goliath-gallery-item figcaption {
    min-height: 78px;
  }

  body {
    padding-bottom: 58px;
  }

  .site-header {
    min-height: 66px;
    padding-inline: 14px;
  }

  .brand img {
    width: 158px;
  }

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

  .phone-link {
    font-size: 0.92rem;
  }

  .hero {
    padding-block: 42px;
    background:
      linear-gradient(180deg, rgba(10, 6, 5, 0.96) 0%, rgba(10, 6, 5, 0.80) 100%),
      url("https://blastoffsolutions.co.nz/wp-content/uploads/2026/07/goliath-portal-crane-steel-restoration-heritage-way-gallery-1.webp") center/cover;
  }

  .ghl-form-iframe {
    min-height: 980px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero-ctas,
  .final-actions {
    display: grid;
  }

  .trust-bar,
  .service-grid,
  .proof-strip,
  .project-grid,
  .testimonial-grid,
  .why-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item {
    align-items: flex-start;
    min-height: 88px;
    gap: 9px;
    padding: 14px 12px;
  }

  .team-section {
    padding-bottom: 0;
  }

  .team-photo {
    width: 100%;
    min-height: 260px;
    aspect-ratio: auto;
  }

  .team-photo img {
    min-height: 260px;
  }

  .team-layout {
    gap: 32px;
  }

  .team-copy h2 {
    font-size: 1.85rem;
  }

  .team-trust-strip {
    margin-top: 34px;
  }

  .team-trust-strip > div {
    padding: 19px 12px 22px;
  }

  .testimonial-card {
    min-height: 0;
    padding: 16px;
  }

  .testimonial-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .testimonial-section .section-heading {
    margin-bottom: 24px;
  }

  .testimonial-grid {
    gap: 14px;
  }

  .testimonial-card blockquote {
    margin: 12px 0 16px;
  }

  .testimonial-card blockquote p {
    font-size: 0.844rem;
    line-height: 1.45;
  }

  .review-divider {
    gap: 10px;
    margin-top: 26px;
  }

  .review-divider strong {
    max-width: 210px;
  }

  .review-fallback {
    gap: 6px;
    margin: 12px auto 14px;
  }

  .review-fallback span,
  .review-fallback strong {
    font-size: 0.8rem;
  }

  .review-feed-container {
    height: 420px;
    min-height: 420px;
    max-height: 420px;
    padding: 12px;
  }

  .lc_reviews_widget {
    min-height: 394px;
  }

  .testimonial-cta {
    margin-top: 18px;
    gap: 10px;
    padding: 16px;
  }

  .testimonial-cta h3 {
    font-size: 1.05rem;
  }

  .testimonial-cta p {
    margin-top: 5px;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .testimonial-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-item strong {
    font-size: 0.82rem;
  }

  .trust-item span {
    font-size: 0.69rem;
  }

  .technical-grid div {
    grid-template-columns: 1fr;
  }

  .final-cta {
    display: grid;
  }

  .mobile-sticky {
    display: grid;
  }
}
