:root {
  --ink: #111827;
  --ink-soft: #263241;
  --muted: #667085;
  --paper: #f7f8f6;
  --surface: #ffffff;
  --surface-2: #f0f2ef;
  --line: #e3e7df;
  --accent: #d6a11f;
  --accent-dark: #9a6b04;
  --whatsapp: #128c4b;
  --dark: #101418;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

:focus-visible {
  outline: 3px solid rgba(214, 161, 31, 0.55);
  outline-offset: 3px;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--surface);
  opacity: 1;
  visibility: visible;
  transition: opacity 480ms ease, visibility 480ms ease;
}

.loader img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  animation: pulse 1.1s ease-in-out infinite alternate;
}

body.loaded .loader {
  opacity: 0;
  visibility: hidden;
}

@keyframes pulse {
  from { transform: scale(0.96); opacity: 0.76; }
  to { transform: scale(1); opacity: 1; }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: #ffffff;
  background: rgba(16, 20, 24, 0.24);
  backdrop-filter: blur(16px);
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(16, 20, 24, 0.92);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 265px;
}

.brand img {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: #fff;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 28px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a,
.header-call,
.btn,
.quick-contact a,
.footer a,
.floating-contact a,
.back-to-top,
.project-gallery button,
.slide-arrow,
.slide-dots button {
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.footer a:hover {
  color: var(--accent);
}

.header-call {
  min-width: max-content;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 11px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.header-call:hover,
.btn:hover,
.quick-contact a:hover,
.floating-contact a:hover,
.back-to-top:hover,
.project-gallery button:hover,
.slide-arrow:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 118px clamp(20px, 6vw, 84px) 46px;
  color: #fff;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background: url("assets/hero-construction.jpg") center / cover no-repeat;
  transform: scale(1.04);
  animation: slowZoom 16s ease-out forwards;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 20, 24, 0.92) 0%, rgba(16, 20, 24, 0.74) 43%, rgba(16, 20, 24, 0.22) 100%),
    linear-gradient(0deg, rgba(16, 20, 24, 0.72) 0%, rgba(16, 20, 24, 0.05) 52%);
}

@keyframes slowZoom {
  to { transform: scale(1); }
}

.hero-content {
  width: min(890px, 100%);
}

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

.eyebrow.dark {
  color: var(--accent-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(34px, 5.2vw, 66px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.8vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.cta-actions,
.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
}

.btn.primary {
  background: var(--accent);
  color: #171206;
  box-shadow: 0 16px 34px rgba(214, 161, 31, 0.25);
}

.btn.primary:hover {
  background: #efc447;
}

.btn.whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 16px 34px rgba(18, 140, 75, 0.22);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn.secondary.light {
  border-color: rgba(255, 255, 255, 0.48);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 850px;
  margin-top: 24px;
}

.hero-highlights span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.hero-highlights b {
  color: #fff;
}

.section-pad {
  padding: clamp(66px, 9vw, 118px) clamp(20px, 6vw, 84px);
}

.section-heading {
  max-width: 940px;
}

.section-heading p,
.about-copy p,
.contact-copy p,
.cta-inner p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.trust {
  background: var(--surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-grid article {
  min-height: 230px;
  padding: 28px;
  background: var(--surface);
}

.stat {
  display: block;
  margin-bottom: 28px;
  color: var(--accent-dark);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
}

.trust-grid h2 {
  margin-bottom: 10px;
  font-size: 21px;
}

.trust-grid p,
.service-list p,
.why-grid p,
.review-card span,
.footer p,
.footer span {
  color: var(--muted);
}

.services {
  background: var(--surface-2);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.service-list article,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.06);
}

.service-list article {
  min-height: 246px;
  padding: 26px;
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: rgba(214, 161, 31, 0.14);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
  background: var(--surface);
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
}

.about-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  min-height: 540px;
}

.about-media img {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media img:first-child {
  margin-top: 0;
}

.featured {
  background: var(--paper);
}

.slideshow {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 66vw, 720px);
  margin-top: 34px;
  border-radius: var(--radius);
  background: #222;
  box-shadow: var(--shadow);
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  margin: 0;
  opacity: 0;
  transition: opacity 520ms ease;
}

.slide.active {
  opacity: 1;
}

.slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(16, 20, 24, 0.82), rgba(16, 20, 24, 0));
}

.slide img {
  object-position: center;
}

.slide figcaption {
  position: absolute;
  left: clamp(20px, 4vw, 46px);
  bottom: clamp(20px, 4vw, 46px);
  z-index: 2;
  color: #fff;
  font-size: clamp(24px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.05;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(16, 20, 24, 0.42);
  color: #fff;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.slide-arrow:hover {
  transform: translateY(calc(-50% - 2px));
  background: rgba(16, 20, 24, 0.68);
}

.slide-arrow.prev {
  left: 18px;
}

.slide-arrow.next {
  right: 18px;
}

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

.slide-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
}

.slide-dots button.active {
  width: 28px;
  border-radius: 999px;
  background: var(--accent);
}

.projects {
  background: var(--surface);
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.project-gallery figure {
  position: relative;
  min-height: 255px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dfe3dc;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.08);
}

.project-gallery figure:nth-child(6n + 1),
.project-gallery figure:nth-child(6n + 4) {
  grid-column: span 2;
  grid-row: span 2;
}

.project-gallery button {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.project-gallery img {
  transition: transform 420ms ease, filter 420ms ease;
}

.project-gallery button:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.02);
}

.project-gallery figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(16, 20, 24, 0.82);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  pointer-events: none;
}

.why {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(214, 161, 31, 0.18), rgba(16, 20, 24, 0) 36%),
    var(--dark);
}

.why .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.why-grid article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.055);
}

.why-grid span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #151004;
  font-weight: 900;
}

.why-grid p {
  color: rgba(255, 255, 255, 0.7);
}

.reviews {
  background: var(--surface-2);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.review-card {
  padding: 28px;
}

.stars {
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 0;
}

.review-card p {
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 700;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card span {
  margin-top: 5px;
  font-size: 13px;
  font-weight: 700;
}

.cta {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 20, 24, 0.9), rgba(16, 20, 24, 0.72)),
    url("assets/projects/09-picture-of-house-painting-1-.jpg") center / cover no-repeat;
}

.cta-inner {
  max-width: 850px;
}

.cta-inner h2 {
  color: #fff;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.78);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
  background: var(--surface);
}

.quick-contact {
  margin-top: 24px;
}

.quick-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 15px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d6ddd2;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(214, 161, 31, 0.18);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(3, minmax(150px, 0.7fr));
  gap: 30px;
  padding: 44px clamp(20px, 6vw, 84px) 24px;
  background: #0c1014;
  color: #fff;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 900;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
}

.footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 9px;
  font-size: 14px;
}

.footer p {
  max-width: 420px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  gap: 10px;
}

.floating-contact a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.22);
}

.float-call {
  background: var(--dark);
}

.float-whatsapp {
  background: var(--whatsapp);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 132px;
  z-index: 40;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #171206;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(4, 7, 10, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  width: min(980px, 92vw);
  height: min(80vh, 980px);
  border-radius: var(--radius);
  object-fit: contain;
  background: #111;
}

.lightbox p {
  margin: 14px 0 0;
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1120px) {
  .trust-grid,
  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .project-gallery figure:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .project-gallery figure:nth-child(5n + 1) {
    grid-column: span 2;
  }
}

@media (max-width: 920px) {
  .site-header {
    padding: 12px 18px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 78px 16px auto;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(16, 20, 24, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 18px;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-call {
    display: none;
  }

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

  .about-media {
    min-height: 440px;
  }

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

  .footer > div:first-child,
  .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 160px;
    font-size: 14px;
  }

  .hero {
    min-height: 560px;
    padding: 104px 20px 28px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 20, 24, 0.94) 0%, rgba(16, 20, 24, 0.79) 66%, rgba(16, 20, 24, 0.42) 100%),
      linear-gradient(0deg, rgba(16, 20, 24, 0.78) 0%, rgba(16, 20, 24, 0.08) 52%);
  }

  h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  h2 {
    font-size: 31px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .trust-grid,
  .service-list,
  .why-grid,
  .review-grid,
  .footer,
  .project-gallery {
    grid-template-columns: 1fr;
  }

  .project-gallery figure:nth-child(n) {
    grid-column: span 1;
  }

  .trust-grid article,
  .service-list article {
    min-height: 0;
  }

  .about-media {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-media img {
    min-height: 320px;
  }

  .about-media img:first-child {
    margin-top: 0;
  }

  .slideshow {
    min-height: 430px;
  }

  .slide-arrow {
    width: 42px;
    height: 42px;
  }

  .slide figcaption {
    right: 20px;
    padding-bottom: 18px;
  }

  .contact-form button {
    width: 100%;
  }

  .floating-contact {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr 1fr;
  }

  .back-to-top {
    right: 16px;
    bottom: 84px;
  }

  .footer {
    padding-bottom: 96px;
  }
}

@media (max-width: 360px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }
}
