:root {
  --orange: #f4a018;
  --orange2: #ff9f0d;
  --black: #080a0b;
  --charcoal: #121619;
  --charcoal2: #1b2023;
  --white: #fff;
  --light: #f5f5f3;
  --muted: #aeb2b4;
  --border: #33383b;
  --max: 1180px;
  --pad: 38px;
  --heading: "Barlow Condensed", Arial Narrow, sans-serif;
  --body: "Inter", Arial, sans-serif;
}


/* =========================================================
   GLOBAL
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: #111;
  background: #fff;
  overflow-x: hidden;
}

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

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

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

.container {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin: auto;
}

.pkc-section {
  position: relative;
  scroll-margin-top: 112px;
}

.section-dark {
  background: linear-gradient(135deg, #101416, #181d20);
  color: #fff;
}

.section-light {
  background: #f5f5f2;
  color: #111;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  height: 112px;
  background: #050608;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}


/* =========================================================
   LOGO
   ========================================================= */

.brand {
  width: 190px;
  height: 100%;
  flex: none;
  display: flex;
  align-items: center;
}

.brand img {
  height: 112px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}


/* =========================================================
   PRIMARY NAVIGATION
   ========================================================= */

.primary-nav {
  height: 100%;
  margin-left: auto;
}

.primary-nav .primary-menu {
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav .primary-menu > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav .primary-menu > li > a {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font: 800 18px var(--heading);
  letter-spacing: 0.02em;
  color: #ddd;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s ease;
}


/* =========================================================
   MENU HOVER / ACTIVE UNDERLINE
   ========================================================= */

.primary-nav .primary-menu > li > a::after {
  content: "";
  position: absolute;

  left: 50%;
  bottom: 27px;

  width: 80%;
  height: 2px;

  background: var(--orange);

  transform: translateX(-50%) scaleX(0);
  transform-origin: center;

  transition: transform 0.3s ease;

  pointer-events: none;
}

.primary-nav .primary-menu > li > a:hover,
.primary-nav .primary-menu > li > a:focus,
.primary-nav .primary-menu > li > a.active {
  color: var(--orange);
}

.primary-nav .primary-menu > li > a:hover::after,
.primary-nav .primary-menu > li > a:focus::after,
.primary-nav .primary-menu > li > a.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* =========================================================
   HEADER CTA
   ========================================================= */

.header-cta {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 28px;
  background: var(--orange);
  color: #111;
  font: 700 18px var(--heading);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.header-cta:hover {
  background: var(--orange2);
}

.header-cta span {
  margin-left: 14px;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle-label {
  display: none;
}

.nav-toggle-line {
  display: block;
  width: 27px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.nav-toggle.is-active .nav-toggle-line:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle-line:nth-of-type(3) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle-line:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-header-phone {
  display: none;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  background: #080a0b;
  color: #fff;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 570px;
  min-height: 570px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.85s ease,
    visibility 0.85s ease;

  background-image:
    linear-gradient(
      90deg,
      rgba(4, 5, 6, 0.95) 0%,
      rgba(4, 5, 6, 0.78) 35%,
      rgba(4, 5, 6, 0.25) 67%,
      rgba(4, 5, 6, 0.2) 100%
    ),
    var(--bg);

  background-size: cover;

  background-position:
    center
    calc(50% + var(--hero-parallax, 0px));

  will-change:
    opacity,
    background-position;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-content {
  position: relative;
  height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}


/* =========================================================
   HERO CONTENT ANIMATION
   ========================================================= */

.hero-slide .eyebrow,
.hero-slide h1,
.hero-slide h2,
.hero-slide .hero-copy,
.hero-slide .hero-actions,
.hero-slide .hero-values {
  opacity: 0;
  will-change: opacity, transform;
}

.hero-slide .eyebrow {
  transform: translate3d(0, 25px, 0);

  transition:
    opacity 0.6s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active .eyebrow {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.18s;
}

.hero-slide h1,
.hero-slide h2 {
  transform: translate3d(0, 45px, 0);

  transition:
    opacity 0.75s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active h1,
.hero-slide.is-active h2 {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.34s;
}

.hero-slide .hero-copy {
  transform: translate3d(0, 35px, 0);

  transition:
    opacity 0.7s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active .hero-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.55s;
}

.hero-slide .hero-actions {
  transform: translate3d(0, 25px, 0);

  transition:
    opacity 0.65s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active .hero-actions {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.70s;
}

.hero-slide .hero-actions .btn {
  opacity: 0;
  transform: translate3d(0, 22px, 0);

  transition:
    opacity 0.55s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.hero-slide.is-active .hero-actions .btn:nth-child(1) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.78s;
}

.hero-slide.is-active .hero-actions .btn:nth-child(2) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.92s;
}

.hero-slide.is-active .hero-actions .btn:nth-child(3) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 1.06s;
}

.hero-slide.is-active .hero-actions .btn:hover {
  transform: translateY(-2px);
  transition-delay: 0s;
}

.hero-slide .hero-values {
  transform: translate3d(45px, 0, 0);

  transition:
    opacity 0.7s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active .hero-values {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.90s;
}

.hero-slide .hero-values li {
  opacity: 0;
  transform: translate3d(25px, 0, 0);

  transition:
    opacity 0.5s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide.is-active .hero-values li:nth-child(1) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.98s;
}

.hero-slide.is-active .hero-values li:nth-child(2) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 1.08s;
}

.hero-slide.is-active .hero-values li:nth-child(3) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 1.18s;
}

.hero-slide.is-active .hero-values li:nth-child(4) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 1.28s;
}

.hero-slide.is-active .hero-values li:nth-child(5) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 1.38s;
}

.hero-slide.is-active .hero-values li:nth-child(n+6) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 1.48s;
}


/* =========================================================
   LABELS
   ========================================================= */

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 20px;
  color: #d5d5d5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow span,
.section-label span {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: var(--orange);
}

.section-label {
  font-size: 12px;
  color: #c9cbcc;
}

.section-label.dark {
  color: #6a6d70;
}


/* =========================================================
   HEADINGS
   ========================================================= */

.hero h1,
.hero h2 {
  max-width: 680px;
  margin: 0;
  font: 800 clamp(46px, 6vw, 78px) / 0.88 var(--heading);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero h1 em,
.hero h2 em,
.section-head h2 em,
.projects-head h2 em,
.why h2 em,
.testimonial-layout h2 em,
.contact-copy h2 em,
.about-copy h2 em {
  color: var(--orange);
  font-style: normal;
}

.hero-copy {
  max-width: 500px;
  margin: 24px 0;
  color: #e0e0e0;
  line-height: 1.65;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  gap: 14px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid transparent;
  font: 700 15px var(--heading);
  letter-spacing: 0.04em;
  text-transform: uppercase;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: #101010;
}

.btn-primary:hover {
  background: #ffb133;
}

.btn-outline {
  border-color: #7a7a7a;
  color: #fff;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-small {
  min-height: 44px;
  padding: 0 20px;
}

.btn-line {
  border: 1px solid #888;
  color: #111;
}


/* =========================================================
   HERO VALUES
   ========================================================= */

.hero-values {
  position: absolute;
  right: 0;
  bottom: 46px;
  margin: 0;
  padding: 0 0 0 22px;
  list-style: none;
  border-left: 2px solid var(--orange);
  font: 600 15px var(--heading);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-values li {
  margin: 5px 0;
}


/* =========================================================
   SLIDER CONTROLS
   ========================================================= */

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  padding: 12px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 52px;
  line-height: 1;
  cursor: pointer;
}

.slider-arrow.prev {
  left: 8px;
}

.slider-arrow.next {
  right: 8px;
}

.slider-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #aaa;
  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.slider-dot.active {
  background: var(--orange);
  transform: scale(1.2);
}


/* =========================================================
   ABOUT
   ========================================================= */

.about {
  padding: 70px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.45fr;
  align-items: center;
  gap: 42px;
}

.about-media {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.accent-corner::before {
  content: "";
  position: absolute;
  left: -16px;
  top: -16px;
  width: 54px;
  height: 54px;
  border-left: 12px solid var(--orange);
  border-top: 12px solid var(--orange);
  z-index: 2;
}

.about-media img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.about-copy h2,
.section-head h2,
.projects-head h2,
.why h2,
.testimonial-layout h2,
.contact-copy h2 {
  margin: 0 0 16px;
  font: 800 clamp(38px, 5vw, 58px) / 0.92 var(--heading);
  text-transform: uppercase;
}

.about-copy p {
  color: #d2d4d5;
  line-height: 1.7;
  font-size: 14px;
}

.about-words {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(255, 255, 255, 0.14);
  font: 800 36px var(--heading);
  text-transform: uppercase;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services {
  padding: 70px 0;
}

.split-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: 48px;
}

.section-head p {
  max-width: 600px;
  color: #575b5e;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: #161a1c;
  color: #fff;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.service-card-body {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 14px 18px;
}

.service-icon {
  color: var(--orange);
  font-size: 27px;
}

.service-card h3 {
  margin: 0;
  font: 700 19px / 1 var(--heading);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Mobile-only service slider controls. */
.service-slider-controls {
  display: none;
}


/* =========================================================
   PROJECTS - HORIZONTAL GALLERY
   ========================================================= */

.projects {
  padding: 70px 0;
  overflow: hidden;
}

.projects-head {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr auto;
  align-items: end;
  gap: 34px;
  margin-bottom: 34px;
}

.projects-head h2 {
  font-size: 52px;
}

.projects-intro {
  color: #c5c8c9;
  line-height: 1.6;
  font-size: 14px;
}


/* Project scroll wrapper */

.project-scroll-wrap {
  position: relative;
}


/* Horizontal track */

.project-grid {
  display: flex;
  gap: 22px;
  width: 100%;
  margin: 0;
  padding: 0 0 18px;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;

  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;

  cursor: grab;
  user-select: none;
}

.project-grid::-webkit-scrollbar {
  display: none;
}

.project-grid.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}


/* Project card */

.project-card {
  position: relative;
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}


/* Project image */

.project-image {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}

.project-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  transform: scale(1);

  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.4s ease;
}

.project-image:hover img {
  transform: scale(1.08);
}


/* Project image overlay */

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.12) 55%,
      transparent 100%
    );

  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.35s ease;
}

.project-image:hover::after {
  opacity: 1;
}


/* Zoom icon */

.project-zoom {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;

  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--orange);
  color: #111;

  font-size: 20px;

  opacity: 0;

  transform:
    translate(-50%, -40%)
    scale(0.8);

  transition:
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);

  pointer-events: none;
}

.project-image:hover .project-zoom {
  opacity: 1;

  transform:
    translate(-50%, -50%)
    scale(1);
}


/* Project text */

.project-card h3 {
  margin: 14px 0 3px;
  color: #fff;
  font: 700 18px var(--heading);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.project-card p {
  margin: 0;
  color: #babdbf;
  font-size: 12px;
  line-height: 1.5;
}


/* =========================================================
   PROJECT SCROLL CONTROLS
   ========================================================= */

.project-scroll-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 22px;
}

.project-scroll-arrow {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0;
  padding: 0;

  border: 1px solid #555;
  background: transparent;
  color: #fff;

  font-size: 18px;

  cursor: pointer;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    opacity 0.25s ease;
}

.project-scroll-arrow:hover:not(:disabled) {
  border-color: var(--orange);
  background: var(--orange);
  color: #111;
}

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

.project-scroll-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}


/* =========================================================
   PROJECT LIGHTBOX
   ========================================================= */

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 60px 90px;

  background: rgba(0, 0, 0, 0.94);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.project-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* Lightbox content */

.project-lightbox-content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: min(1100px, 100%);
  max-height: 90vh;
}


/* Lightbox image */

.project-lightbox-image {
  display: block;

  width: auto;
  height: auto;

  max-width: 100%;
  max-height: 72vh;

  object-fit: contain;

  box-shadow:
    0 20px 60px
    rgba(0, 0, 0, 0.45);

  opacity: 0;

  transform:
    scale(0.94);

  transition:
    opacity 0.3s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-lightbox.is-open .project-lightbox-image {
  opacity: 1;
  transform: scale(1);
}


/* Lightbox project information */

.project-lightbox-info {
  width: 100%;
  padding: 18px 10px 0;
  text-align: center;
}

.project-lightbox-caption {
  margin: 0;
  color: #fff;
  font: 700 22px var(--heading);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.project-lightbox-location {
  margin-top: 5px;
  color: var(--orange);
  font: 600 14px var(--heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-lightbox-description {
  max-width: 700px;
  margin: 9px auto 0;
  color: #bbb;
  font-size: 13px;
  line-height: 1.65;
}


/* Lightbox close */

.project-lightbox-close {
  position: absolute;
  right: 26px;
  top: 20px;
  z-index: 5;

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  border: 0;

  background: transparent;
  color: #fff;

  font-size: 34px;
  line-height: 1;

  cursor: pointer;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.project-lightbox-close:hover {
  color: var(--orange);
  transform: rotate(90deg);
}

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


/* Lightbox previous / next */

.project-lightbox-prev,
.project-lightbox-next {
  position: absolute;
  top: 50%;
  z-index: 5;

  width: 60px;
  height: 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  border: 0;

  background: transparent;
  color: #fff;

  font-size: 42px;
  line-height: 1;

  cursor: pointer;

  transform:
    translateY(-50%);

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.project-lightbox-prev {
  left: 20px;
}

.project-lightbox-next {
  right: 20px;
}

.project-lightbox-prev:hover,
.project-lightbox-next:hover {
  color: var(--orange);
}

.project-lightbox-prev:focus-visible,
.project-lightbox-next:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

body.project-lightbox-open {
  overflow: hidden;
}


/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.why {
  padding: 66px 0;
}

.why-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 38px;
}

.why-head p {
  max-width: 430px;
  color: #4d5154;
  line-height: 1.6;
}

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

.why-grid article {
  padding: 8px 28px 0;
  border-right: 1px solid #d5d5d0;
  text-align: center;
}

.why-grid article:last-child {
  border-right: 0;
}

.why-icon {
  color: var(--orange);
  font-size: 42px;
  line-height: 1;
}

.why-grid h3 {
  margin: 10px 0;
  font: 700 18px / 1 var(--heading);
  text-transform: uppercase;
}

.why-grid p {
  color: #626669;
  font-size: 12px;
  line-height: 1.55;
}


/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonials {
  padding: 55px 0;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr;
  gap: 54px;
  align-items: center;
}

.testimonial-layout h2 {
  font-size: 50px;
}

.testimonial-slider {
  position: relative;
  min-height: 150px;
  padding: 12px 55px 30px;
}

.testimonial-slide {
  display: none;
}

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

.testimonial-slide blockquote {
  margin: 0 0 14px;
  color: #e0e0e0;
  font-size: 17px;
  font-style: italic;
  line-height: 1.65;
}

.testimonial-slide cite {
  color: #ddd;
  font-size: 13px;
  font-style: normal;
}

.testimonial-arrow {
  position: absolute;
  top: 35%;
  border: 0;
  background: transparent;
  color: #ddd;
  font-size: 44px;
  cursor: pointer;
}

.testimonial-arrow.prev {
  left: 0;
}

.testimonial-arrow.next {
  right: 0;
}

.testimonial-dots {
  bottom: 0;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact {
  position: relative;
  min-height: 430px;
  background: #121619;
  color: #fff;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: -60px 0;

  transform:
    translate3d(
      0,
      var(--contact-parallax-y, 0px),
      0
    );

  filter: saturate(0.85);
  will-change: transform;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  min-height: 430px;
}

.contact-copy {
  max-width: 430px;
  align-self: start;
  padding-top: 34px;
}

.contact-copy p {
  color: #efefef;
  line-height: 1.6;
}

.contact-socials {
  margin-top: 26px;
}

.contact-socials-title {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(244, 160, 24, 0.5);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-social-link i {
  color: var(--orange);
  font-size: 18px;
}

a.contact-social-link:hover,
a.contact-social-link:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
  color: #080a0b;
}

a.contact-social-link:hover i,
a.contact-social-link:focus-visible i {
  color: #080a0b;
}

.contact-social-link--static {
  cursor: default;
}


/* =========================================================
   CONTACT FORM 7
   ========================================================= */

.enquiry-form {
  padding: 24px 26px 20px;
  border: 1px solid #34393b;
  background: rgba(15, 18, 20, 0.92);
}

.enquiry-form,
.enquiry-form .wpcf7,
.enquiry-form .wpcf7-form {
  width: 100%;
}

.enquiry-form .form-title {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 26px;
}

.enquiry-form .form-title h3 {
  margin: 0;
  font: 700 28px var(--heading);
  text-transform: uppercase;
  white-space: nowrap;
}

.enquiry-form .form-title > span {
  display: block;
  width: 55px;
  height: 2px;
  flex: 0 0 55px;
  background: var(--orange);
}

.enquiry-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 13px;
  row-gap: 13px;
  margin: 0;
  padding: 0;
}

.enquiry-form .form-field {
  min-width: 0;
  margin: 0;
  padding: 0;
}

.enquiry-form .form-grid > .form-field.full {
  grid-column: 1 / -1;
  width: 100%;
}

.enquiry-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.enquiry-form .wpcf7-form p {
  margin: 0;
  padding: 0;
}

.enquiry-form .wpcf7-text,
.enquiry-form .wpcf7-email,
.enquiry-form .wpcf7-tel,
.enquiry-form .wpcf7-select,
.enquiry-form .wpcf7-textarea {
  display: block;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 400;
  outline: none;

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.enquiry-form .wpcf7-text,
.enquiry-form .wpcf7-email,
.enquiry-form .wpcf7-tel,
.enquiry-form .wpcf7-select {
  height: 54px;
  min-height: 54px;
  padding: 0 16px;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.78);
  opacity: 1;
}

.enquiry-form input::-moz-placeholder,
.enquiry-form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.78);
  opacity: 1;
}

.enquiry-form .wpcf7-select {
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.enquiry-form .wpcf7-select option {
  background: #161a1c;
  color: #fff;
}

.enquiry-form .wpcf7-textarea {
  height: 149px;
  min-height: 149px;
  padding: 16px;
  resize: vertical;
}

.enquiry-form .wpcf7-text:focus,
.enquiry-form .wpcf7-email:focus,
.enquiry-form .wpcf7-tel:focus,
.enquiry-form .wpcf7-select:focus,
.enquiry-form .wpcf7-textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 1px var(--orange);
}

.enquiry-form .form-actions {
  width: 100%;
  margin: 13px 0 0;
}

.enquiry-form input[type="submit"].wpcf7-submit,
.enquiry-form input[type="submit"].form-submit {
  display: block;
  width: 100%;
  height: 62px;
  margin: 0;
  padding: 0 25px;
  border: 0;
  border-radius: 0;
  background: var(--orange);
  color: #080a0b;
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.enquiry-form input[type="submit"].wpcf7-submit:hover,
.enquiry-form input[type="submit"].form-submit:hover {
  background: var(--orange2);
}

.enquiry-form .form-note {
  margin: 14px 0 0;
  color: #aaa;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.enquiry-form .form-note a {
  color: var(--orange);
}

.enquiry-form .wpcf7-not-valid-tip {
  display: block;
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.3;
}

.enquiry-form .wpcf7-response-output {
  margin: 15px 0 0 !important;
}

.enquiry-form .wpcf7-spinner {
  margin: 10px 0 0;
}


/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  padding: 18px 0;
  border-top: 1px solid #222;
  background: #050608;
  color: #cfd2d3;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 11px;
  white-space: nowrap;
}

.footer-logo {
  width: 72px;
  height: 40px;
  object-fit: contain;
}

.footer-row > a,
.footer-row > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-row small {
  color: #aaa;
  font-size: 10px;
}

.footer-row nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-row nav i {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--orange);
}

/* =========================================================
   SCROLL TO TOP
   ========================================================= */

.scroll-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 900;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0;
  padding: 0;

  border: 0;
  border-radius: 0;

  background: var(--orange);
  color: #111;

  font-size: 17px;
  line-height: 1;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;

  transform: translateY(15px);

  box-shadow:
    0 8px 25px
    rgba(0, 0, 0, 0.22);

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    background 0.25s ease;
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--orange2);
  transform: translateY(-3px);
}

.scroll-to-top:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}


/* Mobile */

@media (max-width: 768px) {

  .scroll-to-top {
    right: 18px;
    bottom: 18px;

    width: 44px;
    height: 44px;

    font-size: 15px;
  }
}


/* Reduced motion */

@media (prefers-reduced-motion: reduce) {

  .scroll-to-top {
    transition: none;
  }

  .scroll-to-top:hover {
    transform: none;
  }
}


/* =========================================================
   SECTION SCROLL REVEAL
   ========================================================= */

.reveal-item {
  opacity: 0;

  transform: translate3d(0, 55px, 0);

  transition:
    opacity 0.8s ease,
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);

  transition-delay: var(--reveal-delay, 0ms);

  will-change: opacity, transform;
}

.reveal-item.reveal-left {
  transform: translate3d(-70px, 0, 0);
}

.reveal-item.reveal-right {
  transform: translate3d(70px, 0, 0);
}

.reveal-item.reveal-scale {
  transform:
    translate3d(0, 45px, 0)
    scale(0.93);
}

.reveal-item.is-visible {
  opacity: 1;

  transform:
    translate3d(0, 0, 0)
    scale(1);
}


/* =========================================================
   PARALLAX MEDIA
   ========================================================= */

.parallax-media {
  overflow: hidden;
}

.parallax-media img {
  transform:
    translate3d(
      0,
      var(--parallax-y, 0px),
      0
    )
    scale(1.16);

  transform-origin: center;
  will-change: transform;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .reveal-item,
  .reveal-item.reveal-left,
  .reveal-item.reveal-right,
  .reveal-item.reveal-scale,
  .reveal-item.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .parallax-media img {
    transform: none;
  }

  .contact-bg {
    transform: none;
  }

  .hero-slide {
    background-position: center;
  }

  .hero-slide .eyebrow,
  .hero-slide h1,
  .hero-slide h2,
  .hero-slide .hero-copy,
  .hero-slide .hero-actions,
  .hero-slide .hero-actions .btn,
  .hero-slide .hero-values,
  .hero-slide .hero-values li {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .project-grid {
    scroll-behavior: auto;
  }

  .project-card img,
  .project-lightbox-image,
  .project-lightbox,
  .project-zoom {
    transition: none;
  }

  .project-image:hover img {
    transform: none;
  }
}


/* =========================================================
   TABLET - 1024PX
   ========================================================= */

@media (max-width: 1024px) {

  :root {
    --pad: 26px;
  }

  .header-inner {
    gap: 24px;
  }

  .primary-nav .primary-menu {
    gap: 18px;
  }

  .primary-nav .primary-menu > li > a {
    font-size: 14px;
  }

  .header-cta {
    padding: 0 18px;
  }

  .hero-slider,
  .hero-content {
    height: 540px;
    min-height: 540px;
  }

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

  .about-words {
    display: none;
  }

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

  .projects-head {
    grid-template-columns: 1fr 1fr;
  }

  .projects-head .btn {
    grid-column: 2;
  }

  /*
   * Two project cards visible
   * on tablet.
   */

  .project-card {
    flex: 0 0 calc((100% - 22px) / 2);
  }

  .footer-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-row small {
    order: 10;
    width: 100%;
    text-align: center;
  }

  .footer-row nav {
    order: 11;
  }
}


/* =========================================================
   MOBILE - 768PX
   ========================================================= */

@media (max-width: 768px) {

  :root {
    --pad: 20px;
  }

  .pkc-section {
    scroll-margin-top: 66px;
  }


  /* Header */

  .site-header {
    height: 66px;
  }

  .header-inner {
    position: relative;
    gap: 15px;
  }

  .brand {
    width: auto;
    height: 100%;
  }

  .brand img {
    width: auto;
    height: 56px;
    max-width: 190px;
  }

  .mobile-header-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    gap: 7px;
    font: 800 25px var(--heading);
    line-height: 1;
    letter-spacing: 0.01em;
    white-space: nowrap;
    text-decoration: none;
    z-index: 2;
  }



  .mobile-header-phone-icon {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-header-phone-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
  }

  .mobile-header-phone-number {
    display: inline-block;
  }

  .mobile-header-phone:hover,
  .mobile-header-phone:focus {
    color: var(--orange);
  }


  /* Toggle */

  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-left: auto;
    padding: 4px 5px;
    color: #fff;
  }

  .nav-toggle-label {
    display: block;
    margin-bottom: 1px;
    color: #fff;
    font: 700 10px var(--heading);
    line-height: 1;
    letter-spacing: 0.08em;
  }

  .nav-toggle-line {
    width: 27px;
    margin: 4px auto;
  }


  /* Mobile Navigation */

  .primary-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 66px;

    width: 100%;
    height: auto;

    margin: 0;
    padding: 18px 24px;

    display: none;

    background: #0b0d0e;

    border-top: 1px solid #25292b;

    box-shadow:
      0 12px 25px
      rgba(0, 0, 0, 0.25);

    max-height:
      calc(100vh - 66px);

    overflow-y: auto;
  }

  .primary-nav.open,
  .primary-nav.is-open {
    display: block;
  }

  .primary-nav .primary-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    width: 100%;
    height: auto;

    gap: 0;

    margin: 0;
    padding: 0;

    list-style: none;
  }

  .primary-nav .primary-menu > li {
    display: block;

    width: 100%;
    height: auto;

    margin: 0;
    padding: 0;
  }

  .primary-nav .primary-menu > li > a {
    display: block;

    width: 100%;
    height: auto;

    padding: 12px 0;

    border-bottom:
      1px solid
      rgba(255, 255, 255, 0.08);

    color: #ddd;

    font: 800 18px var(--heading);

    letter-spacing: 0.02em;

    text-transform: uppercase;
  }

  .primary-nav .primary-menu > li > a::after {
    display: none;
  }

  .primary-nav .primary-menu > li:last-child > a {
    border-bottom: 0;
  }

  .primary-nav .primary-menu > li > a:hover,
  .primary-nav .primary-menu > li > a:focus,
  .primary-nav .primary-menu > li > a.active {
    color: var(--orange);
  }

  .header-cta {
    display: none;
  }


  /* Hero */

  .hero-slider,
  .hero-content {
    height: 520px;
    min-height: 520px;
  }

  .hero h1,
  .hero h2 {
    font-size: 54px;
  }

  .hero-values {
    display: none;
  }

  .hero-copy {
    max-width: 430px;
    font-size: 14px;
  }


  /* Main Layout */

  .about-grid,
  .contact-grid,
  .testimonial-layout {
    grid-template-columns: 1fr;
  }

  .about-media img {
    height: 280px;
  }

  .about-copy {
    padding-top: 8px;
  }

  .split-head,
  .why-head {
    display: block;
  }

  .split-head .btn {
    margin-top: 16px;
  }


  /* Services - one card at a time on mobile */

  .service-grid {
    display: flex;
    gap: 0;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .service-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .service-card .service-icon {
    display: none;
  }

  .service-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
  }

  .service-slider-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 1px solid #161a1c;
    background: #161a1c;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    transition:
      background 0.2s ease,
      border-color 0.2s ease,
      color 0.2s ease,
      opacity 0.2s ease;
  }

  .service-slider-arrow:hover:not(:disabled),
  .service-slider-arrow:focus-visible:not(:disabled) {
    border-color: var(--orange);
    background: var(--orange);
    color: #111;
  }

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

  .service-slider-arrow:disabled {
    opacity: 0.35;
    cursor: default;
  }

  .service-slider-status {
    min-width: 48px;
    color: #35393b;
    font: 800 16px var(--heading);
    text-align: center;
    letter-spacing: 0.04em;
  }


  /* =====================================================
     PROJECTS - MOBILE
     ===================================================== */

  .projects-head {
    grid-template-columns: 1fr;
  }

  .projects-head .btn {
    grid-column: auto;
    justify-self: start;
  }

  /*
   * Part of the next card remains
   * visible to indicate swiping.
   */

  .project-card {
    flex: 0 0 85%;
  }

  .project-scroll-controls {
    justify-content: flex-start;
    margin-top: 16px;
  }


  /* Project lightbox */

  .project-lightbox {
    padding:
      65px
      20px
      40px;
  }

  .project-lightbox-content {
    width: 100%;

    max-height:
      calc(100vh - 100px);
  }

  .project-lightbox-image {
    max-width: 100%;
    max-height: 65vh;
  }

  .project-lightbox-info {
    padding: 14px 5px 0;
  }

  .project-lightbox-caption {
    font-size: 19px;
  }

  .project-lightbox-description {
    font-size: 12px;
  }

  .project-lightbox-close {
    right: 8px;
    top: 8px;

    width: 44px;
    height: 44px;

    font-size: 29px;
  }

  .project-lightbox-prev,
  .project-lightbox-next {
    width: 42px;
    height: 60px;

    font-size: 30px;

    background:
      rgba(0, 0, 0, 0.25);
  }

  .project-lightbox-prev {
    left: 0;
  }

  .project-lightbox-next {
    right: 0;
  }


  /* Why */

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

  .why-grid article:nth-child(2) {
    border-right: 0;
  }


  /* Testimonials */

  .testimonial-layout {
    gap: 18px;
  }


  /* Contact */

  .contact-grid {
    padding: 48px 0;
  }

  .contact {
    min-height: unset;
  }

  .contact-copy {
    padding-top: 0;
  }

  .contact-socials {
    margin-top: 22px;
  }

  .contact-social-links {
    gap: 10px;
  }

  /* Contact Form */

  .enquiry-form .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .enquiry-form .form-grid > .form-field.full {
    grid-column: auto;
  }


  /* Footer */

  .footer-row {
    justify-content: flex-start;
    white-space: normal;
  }

  .footer-row > * {
    margin-right: 14px;
  }

  .footer-row nav {
    margin-left: auto;
  }


  /* Section animations */

  .reveal-item {
    transform:
      translate3d(
        0,
        30px,
        0
      );
  }

  .reveal-item.reveal-left,
  .reveal-item.reveal-right {
    transform:
      translate3d(
        0,
        30px,
        0
      );
  }

  .reveal-item.reveal-scale {
    transform:
      translate3d(
        0,
        30px,
        0
      )
      scale(0.97);
  }

  .reveal-item.is-visible {
    transform:
      translate3d(
        0,
        0,
        0
      )
      scale(1);
  }


  /* Disable image parallax on mobile */

  .parallax-media img {
    transform: none !important;
  }

  .contact-bg {
    inset: 0;
    transform: none !important;
  }

  .hero-slide {
    background-position: center;
  }
}


/* =========================================================
   SMALL MOBILE - 520PX
   ========================================================= */

@media (max-width: 520px) {

  .container {
    width:
      min(
        100% - 32px,
        var(--max)
      );
  }

  .brand img {
    height: 50px;
    max-width: 145px;
  }

  .header-inner {
    gap: 10px;
  }

  .mobile-header-phone {
    font-size: 23px;
    font-weight: 800;
    line-height: 1;
    gap: 6px;
  }

  .mobile-header-phone-icon {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }

  .hero-slider,
  .hero-content {
    height: 600px;
    min-height: 600px;
  }

  .hero-slide {
    background-image:
      linear-gradient(
        90deg,
        rgba(4, 5, 6, 0.95),
        rgba(4, 5, 6, 0.62)
      ),
      var(--bg);
  }

  .hero h1,
  .hero h2 {
    font-size: 48px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .slider-arrow {
    font-size: 40px;
  }

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

.makenone{
	display:none !important;
}

  /* =====================================================
     PROJECTS - SMALL MOBILE
     ===================================================== */

  .projects {
    padding: 55px 0;
  }

  .projects-head {
    gap: 18px;
    margin-bottom: 25px;
  }

  .projects-head h2 {
    font-size: 44px;
  }

  .project-card {
    flex-basis: 88%;
  }

  .project-card h3 {
    font-size: 17px;
  }

  .project-scroll-arrow {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .project-lightbox {
    padding:
      60px
      10px
      30px;
  }

  .project-lightbox-image {
    max-height: 60vh;
  }

  .project-lightbox-caption {
    font-size: 18px;
  }

  .project-lightbox-location {
    font-size: 12px;
  }


  /* Why */

  .why-grid article {
    padding: 20px 18px;
    border-right: 0;
    border-bottom: 1px solid #d5d5d0;
  }

  .why-grid article:last-child {
    border-bottom: 0;
  }


  /* Contact */

  .contact-copy h2 {
    font-size: 50px;
  }

  .enquiry-form {
    padding: 20px 16px;
  }

  .enquiry-form .form-title {
    margin-bottom: 20px;
  }


  /* Footer */

  .footer-row {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    text-align: center;
  }

  .footer-row > * {
    margin-right: 0;
  }

  .footer-row nav {
    margin: 0;
  }

  .footer-row small {
    width: auto;
    order: initial;
  }

  .footer-logo {
    width: 82px;
    height: 48px;
  }
}

@media (max-width: 390px) {
  .brand img {
    height: 46px;
    max-width: 130px;
  }

  .header-inner {
    gap: 8px;
  }

  .mobile-header-phone {
    font-size: 20px;
    gap: 5px;
  }

  .mobile-header-phone-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
}

/* =========================================================
   HEADER LOGO SIZE ENHANCEMENT
   Larger branding on desktop and mobile while preserving
   phone/menu spacing in the mobile header.
   ========================================================= */

@media (min-width: 1025px) {
  .site-header {
    height: 128px;
  }

  .brand {
    width: 220px;
  }

  .brand img {
    height: 128px;
    width: auto;
    max-width: 245px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .site-header {
    height: 118px;
  }

  .brand {
    width: 200px;
  }

  .brand img {
    height: 118px;
    width: auto;
    max-width: 215px;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 78px;
  }

  .pkc-section {
    scroll-margin-top: 78px;
  }

  .brand img {
    height: 68px;
    width: auto;
    max-width: 160px;
  }

  .primary-nav {
    top: 78px;
    max-height: calc(100vh - 78px);
  }
}

@media (max-width: 520px) {
  .brand img {
    height: 62px;
    max-width: 140px;
  }
}

@media (max-width: 390px) {
  .brand img {
    height: 56px;
    max-width: 125px;
  }
}
