/* =========================================
   ROOT
========================================= */

:root {
  --black: #090b0e;
  --black-soft: #11151a;
  --charcoal: #1a2027;
  --gray: #68717c;
  --light-gray: #e9edf1;
  --white: #ffffff;

  --blue: #1664d9;
  --blue-bright: #2f80ff;
  --blue-dark: #0b3f95;

  --green: #4f8a31;

  --border: rgba(255, 255, 255, 0.12);

  --container: 1180px;

  --display: "Barlow Condensed", sans-serif;
  --body: "Inter", sans-serif;
}


/* =========================================
   RESET
========================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}


/* =========================================
   UTILITIES
========================================= */

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.section-dark {
  background: var(--black);
  color: var(--white);
  padding: 110px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.blue-label {
  color: var(--blue-bright);
}

h1,
h2,
h3 {
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 0.92;
}

h2 {
  font-size: clamp(3rem, 6vw, 6.4rem);
  letter-spacing: -0.03em;
}

h2 span {
  color: var(--blue);
}

.btn {
  min-height: 58px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 14px 24px;

  font-size: 0.9rem;
  font-weight: 800;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
}

.btn-arrow {
  font-size: 1.2rem;
}


/* =========================================
   TOP BAR
========================================= */

.top-bar {
  background: var(--blue);
  color: var(--white);

  font-size: 0.75rem;
  font-weight: 700;
}

.top-bar-inner {
  min-height: 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;
}

.top-bar p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;
  background: #75e56b;

  box-shadow: 0 0 0 4px rgba(117,229,107,0.15);
}


/* =========================================
   HEADER
========================================= */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;

  z-index: 100;

  color: var(--white);
  background: rgba(9, 11, 14, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.nav {
  min-height: 86px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 54px;
  height: 54px;

  object-fit: cover;

  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;

  font-family: var(--display);
  line-height: 0.85;
}

.brand-text strong {
  font-size: 1.3rem;
}

.brand-text span {
  color: var(--blue-bright);
  font-size: 0.95rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;

  font-size: 0.82rem;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -7px;

  width: 0;
  height: 2px;

  background: var(--blue-bright);

  transition: width 0.2s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--blue);
  color: var(--white);

  padding: 12px 18px;

  font-size: 0.8rem;
  font-weight: 800;
}


/* =========================================
   HERO
========================================= */

.hero {
  position: relative;

  min-height: 850px;

  display: flex;
  align-items: center;

  color: var(--white);

  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;

  background-image:
    url("Images/hero.jpg");

  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(5, 8, 12, 0.94) 0%,
      rgba(5, 8, 12, 0.84) 40%,
      rgba(5, 8, 12, 0.38) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;

  padding-top: 110px;
}

.hero-copy {
  width: min(100%, 720px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 24px;

  color: var(--blue-bright);

  font-size: 0.75rem;
  font-weight: 800;

  letter-spacing: 0.15em;
}

.eyebrow-line {
  width: 40px;
  height: 2px;

  background: var(--blue);
}

.hero h1 {
  max-width: 760px;

  font-size: clamp(4.5rem, 9vw, 9rem);
  font-weight: 900;

  letter-spacing: -0.045em;
}

.hero h1 span {
  display: block;
  color: var(--blue-bright);
}

.hero-description {
  max-width: 620px;

  margin-top: 28px;

  color: rgba(255,255,255,0.82);

  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 34px;
}

.hero-actions .btn-primary {
  flex-direction: column;
  align-items: flex-start;

  min-height: 74px;
}

.hero-actions .btn-primary span {
  font-size: 0.72rem;
}

.hero-actions .btn-primary strong {
  font-size: 1rem;
}

.hero-trust {
  display: flex;
  align-items: center;

  margin-top: 60px;

  gap: 25px;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-family: var(--display);

  color: var(--white);

  font-size: 2rem;
  line-height: 1;
}

.trust-item span {
  max-width: 110px;

  margin-top: 5px;

  color: rgba(255,255,255,0.65);

  font-size: 0.68rem;
  line-height: 1.4;
}

.trust-divider {
  width: 1px;
  height: 42px;

  background: rgba(255,255,255,0.25);
}

.hero-bottom-tag {
  position: absolute;
  z-index: 3;

  bottom: 40px;
  right: 5%;

  display: flex;
  align-items: center;
  gap: 12px;

  color: rgba(255,255,255,0.6);

  font-size: 0.7rem;

  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.scroll-line {
  width: 60px;
  height: 1px;

  background: rgba(255,255,255,0.5);
}


/* =========================================
   VALUE STRIP
========================================= */

.value-strip {
  position: relative;
  z-index: 5;

  margin-top: -1px;

  background: var(--blue);
  color: var(--white);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.value-item {
  min-height: 170px;

  display: flex;
  align-items: center;

  gap: 20px;

  padding: 35px 30px;

  border-right: 1px solid rgba(255,255,255,0.2);
}

.value-item:last-child {
  border-right: 0;
}

.value-number {
  font-family: var(--display);

  color: rgba(255,255,255,0.3);

  font-size: 3.4rem;
  font-weight: 900;
}

.value-item h3 {
  margin-bottom: 8px;

  font-size: 1.8rem;
}

.value-item p {
  max-width: 200px;

  color: rgba(255,255,255,0.75);

  font-size: 0.8rem;
}


/* =========================================
   SECTION HEADINGS
========================================= */

.section-heading,
.work-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;

  align-items: end;

  gap: 60px;

  margin-bottom: 55px;
}

.section-heading h2,
.work-heading h2 {
  margin-top: 14px;
}

.section-heading > p,
.work-heading > p {
  max-width: 450px;

  color: var(--gray);
}


/* =========================================
   SERVICES
========================================= */

.services {
  background: #f4f6f8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 18px;
}

.service-card {
  background: var(--white);

  min-height: 570px;

  display: flex;
  flex-direction: column;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 24px 60px rgba(10,20,35,0.14);
}

.service-card-image {
  height: 240px;

  overflow: hidden;
}

.service-card-image img {
  height: 100%;

  object-fit: cover;

  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card-content {
  flex: 1;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  padding: 28px;
}

.service-icon {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  margin-bottom: 26px;

  color: var(--blue);

  background: #edf4ff;

  font-size: 1.4rem;
}

.service-card h3 {
  font-size: 2.2rem;
}

.service-card p {
  margin-top: 16px;

  color: var(--gray);

  font-size: 0.85rem;
}

.service-card-content a {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-top: auto;
  padding-top: 30px;

  color: var(--blue);

  font-size: 0.75rem;
  font-weight: 800;

  text-transform: uppercase;
}

.service-image-dark {
  display: grid;
  place-items: center;

  background:
    radial-gradient(
      circle at center,
      #23344d,
      #080d14
    );
}

.plumbing-visual {
  position: relative;

  width: 160px;
  height: 140px;
}

.pipe {
  position: absolute;

  border: 16px solid #aeb8c3;
}

.pipe-1 {
  width: 110px;
  height: 70px;

  left: 20px;
  top: 30px;

  border-bottom: 0;

  border-radius: 55px 55px 0 0;
}

.pipe-2 {
  width: 55px;
  height: 80px;

  left: 70px;
  top: 82px;

  border-top: 0;

  border-left: 0;
}

.water-drop {
  position: absolute;

  right: 10px;
  bottom: 8px;

  color: var(--blue-bright);

  font-size: 2.2rem;

  filter: drop-shadow(0 0 15px var(--blue));
}


/* =========================================
   WHY US
========================================= */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 90px;
  align-items: center;
}

.why-image-wrap {
  position: relative;
}

.why-image-wrap img {
  aspect-ratio: 4 / 5;

  object-fit: cover;
}

.image-badge {
  position: absolute;

  right: -30px;
  bottom: 35px;

  width: 150px;
  height: 150px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: var(--blue);
  color: var(--white);

  transform: rotate(-7deg);
}

.image-badge span {
  font-size: 0.65rem;

  font-weight: 800;

  letter-spacing: 0.14em;
}

.image-badge strong {
  font-family: var(--display);

  font-size: 3rem;
  line-height: 1;
}

.why-copy h2 {
  margin-top: 14px;
}

.why-copy p {
  max-width: 550px;

  margin-top: 24px;

  color: rgba(255,255,255,0.68);
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 14px;

  margin: 34px 0;
}

.check-list div {
  display: flex;
  align-items: center;
  gap: 10px;

  color: rgba(255,255,255,0.9);

  font-size: 0.8rem;
  font-weight: 600;
}

.check-list span {
  color: var(--blue-bright);

  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding-bottom: 8px;

  border-bottom: 2px solid var(--blue);

  color: var(--white);

  font-size: 0.75rem;
  font-weight: 800;

  letter-spacing: 0.08em;
}


/* =========================================
   REAL WORK
========================================= */

.work {
  background: var(--white);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.project-card {
  border: 1px solid var(--light-gray);
}

.project-images {
  display: grid;
  grid-template-columns: 1fr 1fr;

  height: 420px;
}

.project-images > div {
  position: relative;

  overflow: hidden;
}

.project-images span {
  position: absolute;
  z-index: 2;

  top: 15px;
  left: 15px;

  padding: 7px 10px;

  color: var(--white);
  background: var(--black);

  font-size: 0.65rem;
  font-weight: 800;

  letter-spacing: 0.1em;
}

.after-image span {
  background: var(--blue);
}

.project-images img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.project-info {
  padding: 25px;
}

.project-info > span {
  color: var(--blue);

  font-size: 0.65rem;
  font-weight: 800;

  letter-spacing: 0.12em;
}

.project-info h3 {
  max-width: 420px;

  margin-top: 10px;

  font-size: 2rem;
}

.work-cta {
  margin-top: 55px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-top: 25px;

  border-top: 1px solid var(--light-gray);
}

.work-cta p {
  color: var(--gray);
}

.work-cta a {
  color: var(--blue);

  font-size: 0.9rem;
  font-weight: 800;
}


/* =========================================
   ABOUT
========================================= */

.about {
  background: #eef1f4;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;

  gap: 100px;
  align-items: center;
}

.owner-mark {
  min-height: 460px;

  display: grid;
  place-items: center;

  background:
    linear-gradient(
      135deg,
      var(--black),
      #1b2733
    );
}

.owner-age {
  display: flex;
  flex-direction: column;
  align-items: center;

  color: var(--white);

  text-align: center;
}

.owner-age span {
  max-width: 160px;

  font-size: 0.7rem;
  font-weight: 800;

  letter-spacing: 0.14em;
}

.owner-age strong {
  font-family: var(--display);

  color: var(--blue-bright);

  font-size: 15rem;
  line-height: 0.85;
}

.about-copy h2 {
  margin-top: 14px;
}

.large-text {
  max-width: 680px;

  margin-top: 30px;

  font-size: 1.12rem;
  font-weight: 600;
}

.about-copy > p:not(.large-text) {
  margin-top: 18px;

  color: var(--gray);
}

blockquote {
  margin: 32px 0;

  padding-left: 20px;

  border-left: 4px solid var(--blue);

  font-family: var(--display);

  font-size: 1.8rem;
  font-weight: 700;

  line-height: 1.05;
}


/* =========================================
   PROCESS
========================================= */

.process {
  padding: 110px 0;

  background: var(--blue);
  color: var(--white);
}

.center-heading {
  text-align: center;
}

.center-heading .section-label {
  color: rgba(255,255,255,0.65);
}

.center-heading h2 {
  margin-top: 14px;
}

.center-heading h2 span {
  color: var(--black);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  margin-top: 70px;

  border-top: 1px solid rgba(255,255,255,0.25);
}

.process-step {
  padding: 35px 40px;

  border-right: 1px solid rgba(255,255,255,0.25);
}

.process-step:last-child {
  border-right: 0;
}

.step-number {
  margin-bottom: 45px;

  color: rgba(255,255,255,0.38);

  font-family: var(--display);

  font-size: 4rem;
  font-weight: 900;
}

.process-step h3 {
  font-size: 2.2rem;
}

.process-step p {
  max-width: 280px;

  margin-top: 14px;

  color: rgba(255,255,255,0.78);

  font-size: 0.85rem;
}


/* =========================================
   SERVICE AREA
========================================= */

.service-area {
  padding: 110px 0;

  background: var(--black);
  color: var(--white);
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 100px;
  align-items: center;
}

.area-copy h2 {
  margin-top: 14px;
}

.area-copy > p {
  max-width: 500px;

  margin-top: 25px;

  color: rgba(255,255,255,0.65);
}

.area-note {
  color: var(--blue-bright) !important;
}

.area-list {
  padding: 45px;

  border: 1px solid var(--border);
}

.area-primary {
  display: flex;
  flex-direction: column;

  margin-bottom: 35px;
}

.area-primary strong {
  font-family: var(--display);

  color: var(--blue-bright);

  font-size: 5rem;
  line-height: 0.9;
}

.area-primary span {
  margin-top: 10px;

  color: rgba(255,255,255,0.6);

  font-size: 0.7rem;
  font-weight: 800;

  letter-spacing: 0.12em;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;
}

.area-tags span {
  padding: 9px 13px;

  background: rgba(255,255,255,0.06);

  border: 1px solid rgba(255,255,255,0.08);

  color: rgba(255,255,255,0.75);

  font-size: 0.75rem;
}


/* =========================================
   CONTACT
========================================= */

.contact-section {
  padding: 100px 0;

  background: #f4f6f8;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-copy h2 {
  margin-top: 14px;
}

.contact-copy > p {
  max-width: 540px;

  margin: 20px auto 0;

  color: var(--gray);
  font-size: 1.05rem;
}

.big-phone {
  display: inline-block;

  margin-top: 30px;

  color: var(--blue);

  font-family: var(--display);

  font-size: clamp(3.2rem, 6.5vw, 5.2rem);
  font-weight: 900;

  line-height: 1;
  letter-spacing: 0.02em;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.big-phone:hover {
  color: var(--blue-dark);
  transform: scale(1.03);
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;

  max-width: 680px;
  margin: 40px auto 0;
  text-align: left;
}

.contact-options a {
  display: flex;
  align-items: center;

  gap: 16px;

  padding: 20px 24px;

  background: var(--white);
  border: 1px solid #e2e8f0;
  box-shadow:
    0 4px 18px rgba(0,0,0,0.04);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.contact-options a:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
  border-color: var(--blue);
}

.contact-icon {
  width: 50px;
  height: 50px;

  display: grid;
  place-items: center;

  color: var(--white);
  background: var(--blue);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-options strong {
  display: block;

  font-size: 1rem;
  color: var(--black);
  margin-bottom: 2px;
}

.contact-options small {
  color: var(--gray);

  font-size: 0.76rem;
  line-height: 1.3;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
  padding: 70px 0 25px;

  background: var(--black);
  color: var(--white);
}

.footer-top {
  display: flex;
  justify-content: space-between;

  gap: 40px;

  padding-bottom: 55px;
}

.footer-brand {
  max-width: 450px;
}

.footer-logo-wrap {
  width: 80px;
  height: 80px;

  margin-bottom: 20px;
}

.footer-logo-wrap img {
  height: 100%;

  object-fit: cover;

  border-radius: 50%;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);

  font-size: 0.82rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;

  align-items: flex-end;
}

.footer-contact span {
  color: rgba(255,255,255,0.45);

  font-size: 0.65rem;
  font-weight: 800;

  letter-spacing: 0.12em;
}

.footer-contact a {
  margin-top: 7px;

  color: var(--blue-bright);

  font-family: var(--display);

  font-size: 2.4rem;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;

  padding-top: 28px;

  border-top: 1px solid var(--border);

  color: rgba(255, 255, 255, 0.6);

  font-size: 0.76rem;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;

  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(47, 128, 255, 0.12) 100%);
  border: 1px solid rgba(47, 128, 255, 0.38);
  border-radius: 9999px;

  text-decoration: none;
  font-family: var(--body);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  position: relative;
  overflow: hidden;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-credit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(47, 128, 255, 0.3), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.footer-credit:hover::before {
  left: 100%;
}

.credit-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 8px var(--blue-bright), 0 0 14px rgba(47, 128, 255, 0.8);
  display: inline-block;
  animation: pulseCredit 2.4s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes pulseCredit {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
    box-shadow: 0 0 8px var(--blue-bright);
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
    box-shadow: 0 0 14px var(--blue-bright), 0 0 20px rgba(47, 128, 255, 0.8);
  }
}

.credit-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.credit-brand {
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.credit-arrow {
  color: var(--blue-bright);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
  flex-shrink: 0;
}

.footer-credit:hover {
  background: linear-gradient(135deg, rgba(22, 100, 217, 0.28) 0%, rgba(47, 128, 255, 0.22) 100%);
  border-color: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(22, 100, 217, 0.45), 0 0 14px rgba(47, 128, 255, 0.3);
}

.footer-credit:hover .credit-brand {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(47, 128, 255, 0.7);
}

.footer-credit:hover .credit-arrow {
  transform: translate(2px, -2px);
  color: #ffffff;
}


/* =========================================
   MOBILE ACTION BAR
========================================= */

.mobile-actions {
  display: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .about-grid,
  .service-area-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .why-image-wrap {
    max-width: 600px;
  }

  .section-heading,
  .work-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section,
  .section-dark,
  .process,
  .service-area,
  .contact-section {
    padding: 75px 0;
  }


  /* Header */

  .site-header {
    top: 0;
  }

  .nav {
    min-height: 72px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .top-bar-inner {
    justify-content: center;

    font-size: 0.62rem;
  }

  .top-bar-inner > a {
    display: none;
  }


  /* Hero */

  .hero {
    min-height: 760px;
  }

  .hero-background {
    background-position: 60% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(5,8,12,0.78) 0%,
        rgba(5,8,12,0.86) 55%,
        rgba(5,8,12,0.97) 100%
      );
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 18vw, 6.5rem);
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    gap: 14px;

    margin-top: 38px;
  }

  .trust-divider {
    display: none;
  }

  .trust-item {
    flex: 1;
  }

  .trust-item strong {
    font-size: 1.5rem;
  }

  .trust-item span {
    font-size: 0.58rem;
  }

  .hero-bottom-tag {
    display: none;
  }


  /* Value */

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-item {
    min-height: auto;

    padding: 25px 15px;

    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.18);
  }


  /* Services */

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card-image {
    height: 230px;
  }


  /* Why */

  .why-image-wrap {
    width: calc(100% - 20px);
  }

  .image-badge {
    width: 110px;
    height: 110px;

    right: -15px;
    bottom: 20px;
  }

  .image-badge strong {
    font-size: 2.3rem;
  }

  .check-list {
    grid-template-columns: 1fr;
  }


  /* Before/After */

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .project-images {
    height: 300px;
  }

  .work-cta {
    flex-direction: column;
    align-items: flex-start;

    gap: 12px;
  }


  /* About */

  .owner-mark {
    min-height: 320px;
  }

  .owner-age strong {
    font-size: 10rem;
  }


  /* Process */

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    padding: 30px 10px;

    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .step-number {
    margin-bottom: 18px;
  }


  /* Area */

  .area-list {
    padding: 28px;
  }

  .area-primary strong {
    font-size: 4rem;
  }


  /* Contact */

  .contact-options {
    grid-template-columns: 1fr;
  }


  /* Footer */

  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-contact {
    align-items: flex-start;
  }


  /* Sticky mobile actions */

  .mobile-actions {
    position: fixed;
    z-index: 100;

    bottom: 0;
    left: 0;
    right: 0;

    height: 70px;

    display: grid;
    grid-template-columns: 1fr 1.4fr;

    box-shadow:
      0 -10px 30px rgba(0,0,0,0.18);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 0.82rem;
    font-weight: 800;
  }

  .mobile-call {
    color: var(--black);
    background: var(--white);
  }

  .mobile-text {
    color: var(--white);
    background: var(--blue);
  }

}
