/* ================================
   TKJ Construction Network Styles
   Mobile-first, fast, and accessible
================================ */

:root {
  --black: #050608;
  --charcoal: #111827;
  --charcoal-2: #1f2937;
  --steel: #94a3b8;
  --steel-light: #e5e7eb;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gold: #d7a83f;
  --gold-dark: #a97919;
  --deep-blue: #0b2147;
  --blue: #173b78;
  --success: #27ae60;
  --danger: #c2410c;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  --soft-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --max-width: 1180px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--off-white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  outline-color: var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 999;
  padding: 0.75rem 1rem;
  color: var(--black);
  background: var(--gold);
  border-radius: 999px;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section-pad {
  padding: 4.5rem 0;
}

.announcement-bar {
  position: relative;
  z-index: 40;
  color: var(--white);
  background: linear-gradient(90deg, var(--deep-blue), var(--black));
  border-bottom: 1px solid rgba(215, 168, 63, 0.35);
}

.announcement-bar p {
  margin: 0;
  padding: 0.55rem 1rem;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

/* Header remains sticky so customers can act at any point. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 35;
  background: rgba(5, 6, 8, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.navbar {
  width: min(100% - 2rem, var(--max-width));
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 12px;
}

.brand span {
  display: none;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle span+span {
  margin-top: 5px;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  inset: 112px 1rem auto;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  color: var(--white);
  background: rgba(5, 6, 8, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-menu.active {
  display: flex;
}

.nav-menu a {
  padding: 0.8rem 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: color var(--transition), background var(--transition);
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.btn:hover,
.btn:focus {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.04);
}

.btn-gold {
  color: var(--black) !important;
  background: linear-gradient(135deg, #f3d27c, var(--gold) 45%, #b47b1f);
  box-shadow: 0 14px 34px rgba(215, 168, 63, 0.28);
}

.btn-light {
  color: var(--black);
  background: var(--white);
}

.btn-blue {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--deep-blue));
  box-shadow: 0 14px 34px rgba(11, 33, 71, 0.25);
}

.btn-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-outline.dark {
  color: var(--charcoal);
  border-color: rgba(17, 24, 39, 0.2);
}

.full-width {
  width: 100%;
}

/* Hero uses layered gradients so it still looks premium before images are replaced. */
.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(5, 6, 8, 0.95), rgba(5, 6, 8, 0.75) 45%, rgba(11, 33, 71, 0.52)),
    url("assets/hero.jpg") center/cover no-repeat;
    background-position: center center;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(transparent, var(--off-white));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.hero-copy {
  max-width: 830px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.5rem, 10vw, 6.3rem);
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: -0.055em;
}

h2 span {
color: var(--gold);
}

h3 {
  font-size: 1.25rem;
}

.hero-subtitle {
  max-width: 760px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.trust-badges span {
  padding: 0.55rem 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-card,
.calculator-card,
.contact-form,
.plan-card,
.checklist-card,
.project-checklist,
.financing-card {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.hero-card {
  color: var(--charcoal);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 252, 0.92));
}

.hero-card h2 {
  margin-top: 0.8rem;
  font-size: clamp(1.55rem, 6vw, 2.35rem);
}

@media (min-width: 900px) {
  .hero-grid {
    align-items: center;
    grid-template-columns: 0.82fr 1.18fr;
  }

  .hero-side-image {
    display: block;
    align-self: center;
    transform: translateY(-145px);
    max-width: 760px;
    justify-self: end;
  }

  .hero-side-image img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: right center;
    display: block;
  }
}

.hero-side-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 6, 8, 0.35), rgba(5, 6, 8, 0));
  pointer-events: none;
  z-index: 1;
}

.status-pill,
.pricing-label {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.75rem;
  color: var(--deep-blue);
  background: rgba(215, 168, 63, 0.18);
  border: 1px solid rgba(215, 168, 63, 0.45);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.check-list,
.feature-list {
  padding: 0;
  margin: 1rem 0;
  list-style: none;
}

.check-list li,
.feature-list li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.65rem;
}

.check-list li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(215, 168, 63, 0.16);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2.2rem;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.contact-copy p {
  color: #526173;
  font-size: 1.05rem;
}

.section-heading.light,
.section-heading.light p {
  color: var(--white);
}

.section-heading.light p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.service-grid,
.gallery-grid,
.review-grid,
.why-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.gallery-card,
.review-card,
.why-card {
  padding-bottom: .5rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover,
.gallery-card:hover,
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 168, 63, 0.45);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
}

.service-card img,
.gallery-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover img,
.gallery-card:hover img {
  transform: scale(1.06);
}

.service-card h3,
.service-card p,
.gallery-card div {
  padding-inline: 1.1rem;
}

.service-card h3,
.gallery-card h3 {
  margin-top: 1.15rem;
}

.service-card p,
.gallery-card p,
.why-card p,
.review-card blockquote {
  color: #526173;
}

.service-card p,
.gallery-card p {
  margin-bottom: 1.2rem;
}

.service-card {
transition: all .25s ease;
}

.gold-card {
  border-color: rgba(215, 168, 63, 0.5);
  box-shadow: 0 20px 60px rgba(215, 168, 63, 0.15);
}

.split-section,
.insurance-section,
.about-section {
  background: var(--white);
}

.split-grid,
.calculator-grid,
.before-after-grid,
.service-area-grid,
.faq-grid,
.contact-grid,
.checklist-grid,
.plan-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.split-copy {
  max-width: 650px;
}

.pricing-card {
  display: grid;
  gap: 0.4rem;
  margin: 1.4rem 0;
  padding: 1.3rem;
  background: linear-gradient(135deg, rgba(215, 168, 63, 0.14), rgba(11, 33, 71, 0.05));
  border: 1px solid rgba(215, 168, 63, 0.32);
  border-radius: var(--radius-sm);
}

.pricing-card strong {
  color: var(--deep-blue);
  font-size: clamp(2.4rem, 8vw, 4.2rem);
  line-height: 1;
}

.image-stack {
  position: relative;
}

.image-stack img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-stat {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 280px;
  padding: 1rem;
  color: var(--white);
  background: rgba(5, 6, 8, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.floating-stat strong,
.floating-stat span {
  display: block;
}

.floating-stat span {
  color: rgba(255, 255, 255, 0.76);
}

.protection-plan {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 6, 8, 0.94), rgba(11, 33, 71, 0.92)),
    url("assets/roofing.jpg") center/cover fixed;
}

.plan-card {
  color: var(--charcoal);
}

.two-column {
  columns: 1;
}

.calculator-section,
.why-section,
.faq-section {
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(215, 168, 63, 0.16);
}

textarea {
  resize: vertical;
}

.estimate-result {
  margin-top: 1rem;
  padding: 1.1rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-blue), var(--charcoal));
  border-radius: var(--radius-sm);
  font-size: 1.15rem;
  font-weight: 900;
}

.estimate-result small {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  opacity: 0.85;
}

.estimate-result.estimate-ready {
  animation: estimatePulse 1.4s ease;
}

@keyframes estimatePulse {
  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.025);
  }

  100% {
    transform: scale(1);
  }
}

body.scrolled .floating-actions a {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.disclaimer,
.legal-note {
  padding: 1rem;
  color: #475569;
  background: rgba(215, 168, 63, 0.12);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  font-size: 0.95rem;
}

.gallery-card {
  position: relative;
}

.gallery-card div {
  padding-bottom: 1.1rem;
}

.before-after {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--black);
}

.before-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-wrap {
  position: absolute;
  inset: 0;
  width: 52%;
  overflow: hidden;
  border-right: 4px solid var(--gold);
}

.after-img {
  width: calc(100vw - 2rem);
  max-width: var(--max-width);
}

.before-after input[type="range"] {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  z-index: 2;
  width: min(82%, 520px);
  transform: translateX(-50%);
  accent-color: var(--gold);
}

.ba-label {
  position: absolute;
  top: 1rem;
  z-index: 2;
  padding: 0.45rem 0.8rem;
  color: var(--white);
  background: rgba(5, 6, 8, 0.76);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.before-label {
  right: 1rem;
}

.after-label {
  left: 1rem;
}

.why-card {
  padding: 1.2rem;
}

.why-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--gold-dark);
  font-weight: 900;
}

section {
scroll-margin-top: 95px;
}

.insurance-section {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.84)),
    url("assets/exterior.jpg") center/cover;
}

.checklist-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--charcoal), var(--deep-blue));
}

.checklist-section .project-checklist,
.checklist-section .financing-card {
  color: var(--charcoal);
}

.review-card {
  margin: 0;
  padding: 1.35rem;
}

.review-card blockquote {
  margin: 0;
  font-size: 1.05rem;
}

.review-card blockquote::before {
  content: "“";
  display: block;
  color: var(--gold);
  font-size: 3rem;
  line-height: 0.8;
}

.review-card figcaption {
  margin-top: 1rem;
  color: var(--charcoal);
  font-weight: 900;
}

.service-area-section {
  padding: 70px 0;
}

.service-cities {
margin-top: 1rem;
text-align: center;
font-weight: 700;
color: #526173;
font-size: .95rem;
}

.map-placeholder {
  margin-top: 2rem;
  height: 340px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  background: #111;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.faq-list {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.faq-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem;
  color: var(--charcoal);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.faq-item strong {
  color: var(--gold-dark);
  font-size: 1.4rem;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-panel p {
  margin: 0;
  padding: 1rem 1.1rem 1.2rem;
  color: #526173;
}

.contact-section {
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(5, 6, 8, 0.96), rgba(11, 33, 71, 0.92)),
    url("assets/hero.jpg") center/cover;
}

.contact-copy p,
.contact-info {
  color: rgba(255, 255, 255, 0.78);
}

.contact-info {
  margin-top: 1.5rem;
}

.contact-info a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(215, 168, 63, 0.75);
}

.contact-form {
  background: rgba(255, 255, 255, 0.96);
}

.full-field {
  grid-column: 1 / -1;
}

.upload-field span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
}

.storm-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--black);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0 2rem;
}

.footer-brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer a {
  display: block;
  margin: 0.45rem 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--gold);
}

.footer-bottom {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem 0 7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: grid;
  gap: 0.6rem;
}

.floating-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .65rem .95rem;
  font-size: .95rem;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: var(--soft-shadow);
}

.float-call {
  color: var(--white);
  background: var(--success);
}

.float-estimate {
  color: var(--black);
  background: var(--gold);
}

/* Reveal animation is activated by JavaScript. */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 640px) {
  .brand span {
    display: inline;
  }

  .service-grid,
  .gallery-grid,
  .why-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column {
    columns: 2;
  }
}

@media (min-width: 900px) {
  .hero-grid {
    align-items: center;
  }

  .hero-side-image {
    display: block;
    align-self: center;
    transform: translateY(-145px);
  }

.hero-side-image img {
  min-height: 560px;
  object-position: center;
}

.hero-grid,
.split-grid,
  .calculator-grid,
  .before-after-grid,
  .service-area-grid,
  .faq-grid,
  .contact-grid,
  .checklist-grid,
  .plan-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .hero-card {
    align-self: end;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid,
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-grid,
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: span 1;
  }
}

@media (min-width: 1080px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.05rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-menu a {
    padding: 0.62rem 0.7rem;
    font-size: 0.86rem;
  }

  .nav-menu .nav-cta {
    margin-left: 0.4rem;
    padding-inline: 1rem;
  }

  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 850px;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .floating-actions {
    inset: auto 0 0 0;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .floating-actions a {
    border-radius: 0;
  }
}

/* FINAL HERO SIDE IMAGE */
.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 5.2rem);
  max-width: 720px;
}

.hero::after {
  height: 90px;
  background: linear-gradient(transparent, var(--off-white));
}

.hero-side-image {
  position: relative;
  display: none;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
}

.hero-side-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-side-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 6, 8, 0.35), rgba(5, 6, 8, 0));
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 0.78fr 1.22fr !important;
    align-items: center !important;
  }

  .hero-side-image {
    display: block !important;
    width: 920px !important;
    max-width: 100% !important;
    justify-self: end !important;
    align-self: center !important;
    transform: translateY(-145px) !important;
    filter: drop-shadow(0 20px 60px rgba(215, 168, 63, 0.08));
  }

  .hero-side-image img {
    object-fit: contain !important;
    object-position: right center !important;
  }
}