﻿@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap");

:root {
  --slateblue: #11183b;
  --slateblue-deep: #0b1028;
  --slateblue-soft: #2a356f;
  --charcoal: #23252b;
  --charcoal-soft: #2f323a;
  --bone: #f4f1ec;
  --linen: #e7e0d7;
  --brass: #c2a375;
  --white: #ffffff;
  --black: #0b0b0b;
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 30px 60px rgba(11, 11, 11, 0.22);
  --shadow-tight: 0 10px 30px rgba(11, 11, 11, 0.25);
  --grid-max: 1180px;
}

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

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--charcoal);
  background-color: var(--bone);
  position: relative;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("./images/middleton-tyas-3.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  opacity: 0.5;
  z-index: -1;
}

body.page-systems::before {
  background-image: url("./images/systems-bg.jpg");
  filter: grayscale(100%);
}

body.page-home::before {
  background-image: url("./images/home-bg.png");
  filter: grayscale(100%);
}

body.page-who::before {
  background-image: url("./images/Flag.png");
  filter: grayscale(100%);
}

body.page-what-we-do::before {
  background-image: url("./images/what-we-do-bg.jpeg");
  filter: grayscale(100%);
}

body.page-projects::before {
  background-image: url("./images/projects-bg.jpg");
  filter: grayscale(100%);
}

body.page-quote::before {
  background-image: url("./images/request-quote-bg.jpg");
  filter: grayscale(100%);
}

body.page-interactive::before {
  background-image: url("./images/interactive-bg.jpeg");
  filter: grayscale(100%);
}

body.page-blog::before {
  background-image: none;
  filter: none;
  opacity: 0;
}

.blog-hero-section {
  padding: 36px 4vw 24px;
}

.blog-hero-section .section-inner {
  display: block;
}

.blog-hero-image {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.blog-video-section {
  padding-top: 0;
}

.blog-video {
  width: min(100%, 720px);
  height: auto;
  max-height: 45vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  background: #000;
  margin: 0 auto;
}

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

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

button,
.button,
input,
select,
textarea,
a {
}

body.page-home.splash-active {
  overflow: hidden;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--bone);
  perspective: 1200px;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.splash-screen img {
  width: min(92vw, 1200px);
  height: min(92vh, 900px);
  object-fit: contain;
  transform-origin: center center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  animation: splash-logo-axis-reveal 2.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s 1
    both;
}

.splash-screen.hide {
  opacity: 0;
  pointer-events: none;
}

@keyframes splash-logo-axis-reveal {
  from {
    transform: rotateY(90deg) scale(0.96);
  }
  to {
    transform: rotateY(0deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .splash-screen img {
    animation: none;
  }
}

main {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 241, 236, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(35, 37, 43, 0.08);
}

.nav {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 10px 2vw 6px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: -10px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.brand img {
  height: 210px;
  width: auto;
  max-width: none;
}

.brand span {
  display: none;
}

.nav-links {
  display: flex;
  gap: 14px;
  font-size: 1.12rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-self: center;
  margin-top: 0;
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--slateblue);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: var(--slateblue);
  color: var(--white);
  border: 1px solid var(--slateblue-deep);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 18px 4vw 28px;
  border-top: 1px solid rgba(35, 37, 43, 0.08);
  background: var(--bone);
}

.mobile-menu.open {
  display: flex;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  color: var(--white);
  padding: 120px 4vw 120px;
  overflow: hidden;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

body.page-home .hero {
  background-image: none;
}

body.page-home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: 0;
}

body.page-who .hero {
  background-image: none;
}

body.page-who .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: var(--hero-position, center);
  filter: grayscale(100%);
  z-index: 0;
}

body.page-what-we-do .hero {
  background-image: none;
}

body.page-what-we-do .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: 0;
}

body.page-systems .hero {
  background-image: none;
}

body.page-systems .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: 0;
}

body.page-interactive .hero {
  background-image: none;
}

body.page-interactive .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: 0;
}

body.page-quote .hero {
  background-image: none;
}

body.page-quote .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: 0;
}

body.page-quote .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244, 241, 236, 0.2);
  z-index: 0;
  pointer-events: none;
}

body.page-projects .hero {
  background-image: none;
}

body.page-projects .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: 0;
}

body.page-projects .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244, 241, 236, 0.2);
  z-index: 0;
  pointer-events: none;
}

.hero.hero-split {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  background-image: linear-gradient(
    120deg,
    rgba(11, 11, 11, 0.7),
    rgba(35, 37, 43, 0.85)
  );
}

.hero.hero-split .hero-content {
  max-width: 520px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  border-radius: var(--radius-lg);
  object-fit: contain;
  background: rgba(11, 11, 11, 0.6);
  box-shadow: var(--shadow-soft);
}

.hero::after {
  content: none;
}

.hero[data-hero-images]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244, 241, 236, 0.2);
  z-index: 0;
  pointer-events: none;
}

body.page-quote .hero::after,
body.page-projects .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(244, 241, 236, 0.2);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--grid-max);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.hero-tag {
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.02em;
}

.hero-word-accent {
  color: var(--slateblue);
}

.hero p {
  max-width: 560px;
  font-size: 1.15rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

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

.button {
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.button.primary {
  background: var(--slateblue);
  color: var(--white);
  box-shadow: var(--shadow-tight);
}

.button.secondary {
  background: rgba(17, 24, 59, 0.35);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 640px;
}

.stat {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(17, 24, 59, 0.46);
  border: 1px solid rgba(17, 24, 59, 0.72);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.stat span {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-top: 6px;
}

.section {
  padding: 90px 4vw;
}

.section.alt {
  background: linear-gradient(135deg, var(--linen), var(--bone));
}

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

.section-inner {
  max-width: var(--grid-max);
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0;
  letter-spacing: -0.01em;
}

.section-lead {
  max-width: 660px;
  font-size: 1.1rem;
}

.quote-intro-text {
  font-size: 3.3rem;
  color: var(--white);
}

.who-approach-copy .section-title,
.who-approach-copy .section-lead {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  align-items: center;
}

.panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.panel.dark {
  background: var(--charcoal-soft);
  color: var(--white);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--slateblue-deep);
  font-size: 0.9rem;
  background: var(--slateblue);
  color: var(--white);
}

.services-grid,
.systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service-card,
.system-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(35, 37, 43, 0.1);
  box-shadow: var(--shadow-tight);
}

.system-card img {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
}

.service-card h3,
.system-card h3 {
  font-family: "Space Grotesk", sans-serif;
  margin-top: 0;
  margin-bottom: 8px;
}

.system-ideal {
  margin-bottom: 0;
  font-weight: 600;
  color: rgba(35, 37, 43, 0.7);
}

.systems-list {
  display: grid;
  gap: 28px;
}

.system-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(35, 37, 43, 0.08);
  box-shadow: var(--shadow-soft);
}

.system-image img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-tight);
}

.system-meta {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 14px;
}

.system-row .system-content {
  display: grid;
  gap: 12px;
  text-align: center;
  justify-items: center;
  max-width: 420px;
}

.system-row .system-content h3 {
  margin: 0;
}

.system-row .system-content p {
  margin: 0;
}

.system-logo {
  width: 240px;
  height: 240px;
}

@media (max-width: 900px) {
  .system-row {
    grid-template-columns: 1fr;
  }
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: grid;
}

.project-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

body.page-projects .project-card img {
  filter: grayscale(100%);
}

body.page-projects .project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: rgba(244, 241, 236, 0.2);
  pointer-events: none;
  z-index: 1;
}

.project-card .content {
  padding: 20px 22px 26px;
}

.project-card h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
}

.interactive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.interactive-pill-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.interactive-pill {
  font-size: 7.2rem;
  padding: 60px 120px;
}

.interactive-card {
  display: grid;
  gap: 16px;
}

.interactive-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: var(--shadow-tight);
}

.interactive-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.interactive-after {
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed rgba(35, 37, 43, 0.25);
}

.interactive-after div {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.04em;
}

.interactive-placeholder {
  min-height: 280px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(35, 37, 43, 0.25);
  background: rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.04em;
}

.bored-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: start;
}

.house-board {
  position: relative;
  min-height: 520px;
  background: linear-gradient(180deg, rgba(244, 241, 236, 0.9), #ffffff);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.house-outline {
  position: absolute;
  inset: 32px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(35, 37, 43, 0.15);
  display: grid;
  grid-template-rows: 45% 55%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), #ffffff);
}

.house-outline .roof {
  border-bottom: 2px solid rgba(35, 37, 43, 0.15);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  background: linear-gradient(180deg, rgba(17, 24, 59, 0.18), rgba(35, 37, 43, 0.08));
}

.house-outline .wall {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 241, 236, 0.9));
}

.brick-slots {
  position: absolute;
  left: 64px;
  right: 64px;
  top: 52%;
  bottom: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 70px;
  gap: 18px;
  align-content: center;
}

.brick-slot {
  min-height: 64px;
  border-radius: 12px;
  border: 2px dashed rgba(17, 24, 59, 0.4);
  background: repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.4) 0,
      rgba(255, 255, 255, 0.4) 14px,
      rgba(220, 214, 206, 0.6) 14px,
      rgba(220, 214, 206, 0.6) 16px
    ),
    rgba(255, 255, 255, 0.6);
  display: grid;
  place-items: center;
}

.brick-slot.over {
  border-color: var(--slateblue);
  background: rgba(17, 24, 59, 0.18);
}

.brick-slot.filled {
  border-style: solid;
  border-color: rgba(35, 37, 43, 0.2);
}

.brick {
  width: 100%;
  max-width: 180px;
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #c85b47, #9d3c2f);
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(0, 0, 0, 0.18)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.12) 0,
      rgba(255, 255, 255, 0.12) 8px,
      rgba(0, 0, 0, 0.08) 8px,
      rgba(0, 0, 0, 0.08) 10px
    );
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  cursor: grab;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.2),
    inset 0 -3px 6px rgba(0, 0, 0, 0.25),
    0 10px 18px rgba(35, 37, 43, 0.25);
}

.brick.dragging {
  opacity: 0.6;
  cursor: grabbing;
}

.brick-slot .brick {
  max-width: none;
  width: 100%;
}

.brick-tray {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 20px;
}

.brick-tray h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.brick-pile {
  display: grid;
  gap: 12px;
}

.brick-tray .brick {
  text-align: center;
}

.house-message {
  position: absolute;
  inset-inline: 0;
  bottom: 24px;
  margin: 0 auto;
  width: fit-content;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--slateblue);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-tight);
  transition: opacity 0.3s ease;
}

.house-board::after {
  content: "";
  position: absolute;
  inset: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(35, 37, 43, 0.1);
  pointer-events: none;
}

.house-outline .wall::before,
.house-outline .wall::after {
  content: "";
  position: absolute;
  top: 18%;
  width: 22%;
  height: 34%;
  border-radius: 12px;
  border: 2px solid rgba(35, 37, 43, 0.2);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: inset 0 0 0 4px rgba(17, 24, 59, 0.12);
}

.house-outline .wall::before {
  left: 16%;
}

.house-outline .wall::after {
  right: 16%;
}

.house-board .house-door {
  position: absolute;
  bottom: 64px;
  left: 50%;
  width: 16%;
  height: 28%;
  transform: translateX(-50%);
  border-radius: 18px 18px 6px 6px;
  border: 2px solid rgba(35, 37, 43, 0.25);
  background: rgba(194, 163, 117, 0.28);
  box-shadow: inset 0 0 0 3px rgba(35, 37, 43, 0.1);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--slateblue);
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.badge.interactive-pill {
  font-size: 1.2rem;
  padding: 10px 20px;
}

.quote-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

label.consent {
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  gap: 12px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(35, 37, 43, 0.2);
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  margin: 4px 0 0;
  font-size: 0.95rem;
  color: rgba(35, 37, 43, 0.8);
}

.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 4vw;
}

.footer .section-inner {
  gap: 18px;
}

.footer-contacts {
  display: grid;
  gap: 0;
}

.footer-contacts span {
  display: block;
  line-height: 1.2;
}
.footer-docs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer-docs a {
  text-decoration: underline;
}
.footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-socials a {
  display: inline-flex;
}

.footer-socials img {
  height: 32px;
  width: auto;
  display: block;
}
.footer-companies-house {
  display: inline-flex;
  width: fit-content;
}

.footer-companies-house img {
  height: 32px;
  width: auto;
  display: block;
}
.footer strong {
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 120px 6vw 90px;
  }

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

  .section {
    padding: 70px 6vw;
  }

  .bored-layout {
    grid-template-columns: 1fr;
  }
}



.footer-socials img.footer-checkatrade {
  height: 48px;
  width: auto;
  filter: grayscale(100%);
}



