﻿:root {
  --red: #b72a22;
  --red-dark: #861b16;
  --red-soft: #f7dfdc;
  --black: #0b0b0b;
  --ink: #161616;
  --muted: #69645f;
  --line: #ded8d1;
  --paper: #ffffff;
  --soft: #f5f1eb;
  --soft-2: #ebe4dc;
  --shadow: 0 24px 70px rgba(20, 12, 8, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.container {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--red);
  color: #fff;
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  left: 50%;
  top: 26px;
  z-index: 50;
  width: min(1180px, calc(100% - 44px));
  transform: translateX(-50%);
  color: #fff;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
  box-shadow: none;
  transition: top 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  top: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(222, 216, 209, 0.9);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.08);
}

.header-inner {
  width: 100%;
  min-height: 66px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 22px;
  padding: 0 16px;
}

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

.brand-logo {
  width: 62px;
  height: 38px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy strong {
  max-width: 285px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.075em;
}

.brand-copy small {
  margin-top: 6px;
  color: currentColor;
  opacity: 0.68;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  font-weight: 600;
  justify-self: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.main-nav a {
  position: relative;
  color: currentColor;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-phone {
  padding: 9px 13px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 26px rgba(183, 42, 34, 0.26);
  justify-self: end;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.header-phone:hover,
.header-phone:focus-visible {
  background: var(--red-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: currentColor;
  cursor: pointer;
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
  border-color: var(--line);
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #070707;
  min-height: 820px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  width: auto;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.16) 38%, rgba(0, 0, 0, 0.58) 66%, rgba(20, 17, 16, 0.62) 76%, rgba(80, 76, 72, 0.48) 84%, rgba(205, 202, 197, 0.46) 92%, #fff 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.62) 46%, rgba(0, 0, 0, 0.16) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 72px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 8vw;
  top: 86px;
  z-index: 3;
  width: min(34vw, 470px);
  height: min(36vw, 500px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 2px, transparent 2px 24px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.09) 0 2px, transparent 2px 54px);
  opacity: 0.34;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 4;
  min-height: 690px;
  display: block;
  padding: 170px 0 130px;
}

.kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-head .kicker::before,
.hero-copy .kicker::before,
.build-copy .kicker::before,
.contact-copy .kicker::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
  background: currentColor;
}

.hero-copy .kicker {
  margin-bottom: 22px;
  color: var(--red);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.hero-copy h1 {
  margin: 0;
  max-width: 820px;
  color: #fff;
  font-size: clamp(58px, 8.5vw, 118px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy p:not(.kicker) {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  align-items: center;
}

.hero-arrow {
  width: 92px;
  height: 86px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-size: 56px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  transform: translateY(-2px);
  background: var(--red-dark);
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--red-dark);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--black);
}

.btn-light {
  background: #fff;
  color: var(--black);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 0;
  box-shadow: none;
  background:
    radial-gradient(circle at 76% 48%, rgba(183, 42, 34, 0.12), transparent 38%);
  pointer-events: none;
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  opacity: 0.98;
  filter: grayscale(1) contrast(1.1) brightness(0.86);
}

.contact-bar {
  position: relative;
  z-index: 3;
  margin-top: -74px;
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr 0.9fr;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-bar article,
.quote-tile {
  min-height: 148px;
  padding: 28px;
  display: grid;
  align-content: center;
  gap: 7px;
  border-right: 1px solid var(--line);
}

.contact-bar span {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-bar a,
.contact-bar p {
  margin: 0;
  color: var(--black);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 700;
  line-height: 1.1;
}

.quote-tile {
  border-right: 0;
  background: var(--red);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.05;
}

.section {
  padding: 116px 0;
  scroll-margin-top: 96px;
}

#inicio,
#sobre,
#contactos,
#servicos {
  scroll-margin-top: 96px;
}

.section-head {
  max-width: 790px;
  margin-bottom: 46px;
}

.section-head h2,
.build-copy h2,
.quote-section h2,
.contact-copy h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 330px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card-dark {
  background: var(--black);
  color: #fff;
}

.service-card-red {
  background: var(--red);
  color: #fff;
}

.service-icon {
  width: 66px;
  height: 66px;
  display: inline-grid;
  place-items: center;
  color: var(--red);
  background: rgba(183, 42, 34, 0.08);
}

.service-icon svg {
  width: 44px;
  height: 44px;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: square;
  stroke-linejoin: miter;
  fill: none;
}

.service-card-dark .service-icon,
.service-card-red .service-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.service-card h3 {
  margin: 42px 0 12px;
  font-size: 25px;
  line-height: 1.05;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card-dark p,
.service-card-red p {
  color: rgba(255, 255, 255, 0.76);
}

.service-card a {
  margin-top: auto;
  color: currentColor;
  font-size: 13px;
  font-weight: 700;
}

.services {
  background: #fff;
  margin-top: -1px;
}

.services .section-head {
  max-width: 900px;
  margin-bottom: 0;
  padding-top: 6px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.services .section-head h2 {
  max-width: 690px;
}

.services .service-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 44px;
}

.services .service-card {
  min-height: 390px;
}

.services .service-card h3 {
  max-width: 220px;
}

.services .service-card a::after {
  content: "↗";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
}

.services .service-card-red a::after,
.services .service-card-dark a::after {
  background: #fff;
  color: var(--red);
}

.build-block {
  padding: 72px 0;
  background: #050505;
  color: #fff;
}

.build-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.build-media {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: #111;
}

.build-media::before {
  content: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78)),
    linear-gradient(90deg, rgba(180, 42, 34, 0.72), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.build-media img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.build-copy p:not(.kicker) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.build-copy h2 {
  color: #fff;
  font-size: clamp(34px, 4.3vw, 56px);
}

.build-copy .kicker {
  color: var(--red);
}

.contact-copy .kicker {
  color: var(--red);
}

.features {
  padding: 88px 0 110px;
  background: #fff;
}

.compact-head {
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
}

.feature-grid article {
  min-height: 248px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

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

.feature-grid span {
  display: block;
  width: 38px;
  height: 4px;
  background: var(--red);
}

.feature-grid h3 {
  margin: 46px 0 10px;
  font-size: 22px;
  line-height: 1.1;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
}

.projects {
  background: var(--black);
  color: #fff;
}

.projects .section-head h2 {
  color: #fff;
}

.projects .kicker {
  color: #ffbeb9;
}

.split-head {
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr 0.85fr;
  gap: 56px;
  align-items: end;
}

.split-head > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.66);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  grid-template-rows: repeat(2, minmax(270px, 1fr));
  gap: 22px;
}

.project-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  background: #171717;
}

.project-large {
  grid-row: span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03);
  transition: transform 360ms ease, filter 360ms ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.86));
}

.project-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.06);
}

.project-card div {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 1;
}

.project-card span {
  color: #ffbeb9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card h3 {
  max-width: 620px;
  margin: 10px 0 0;
  font-size: clamp(25px, 3.4vw, 44px);
  line-height: 1.02;
  letter-spacing: 0;
}

.project-card:not(.project-large) h3 {
  font-size: 25px;
}

.quote-section {
  padding: 82px 0;
  background: var(--red);
  color: #fff;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr auto;
  gap: 34px;
  align-items: center;
}

.quote-section .kicker,
.quote-section h2 {
  color: #fff;
}

.quote-grid p:not(.kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 60px;
  align-items: start;
}

.contact-copy > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: grid;
  gap: 18px;
}

.contact-list li {
  display: grid;
  gap: 5px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-list strong {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list a {
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 34px;
  background: var(--red);
  border: 1px solid var(--red);
  box-shadow: 18px 18px 0 var(--black);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-full,
.form-button,
.form-status {
  grid-column: 1 / -1;
}

label {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbc3ba;
  background: #fff;
  color: var(--ink);
  padding: 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(183, 42, 34, 0.14);
}

.form-row.is-invalid input,
.form-row.is-invalid select,
.form-row.is-invalid textarea {
  border-color: var(--red);
}

.error-message {
  min-height: 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #fff;
  font-weight: 850;
}

.contact-form .form-button {
  background: var(--black);
  color: #fff;
}

.contact-form .form-button:hover,
.contact-form .form-button:focus-visible {
  background: #242424;
}

.site-footer {
  padding: 66px 0 28px;
  background: #080808;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.58fr 0.82fr;
  gap: 48px;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid h2 {
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
}

.footer-brand {
  color: #fff;
  margin-bottom: 18px;
}

.footer-brand .brand-copy small {
  color: rgba(255, 255, 255, 0.64);
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
    justify-self: auto;
    text-align: center;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 12px;
  }

.main-nav a::after {
    display: none;
  }

  .hero-grid,
  .build-grid,
  .split-head,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
    padding-top: 172px;
  }

  .hero-visual {
    min-height: auto;
  }

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

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

  .project-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .project-card,
  .project-large {
    grid-row: auto;
    min-height: 360px;
  }

  .quote-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 14px;
    width: min(100% - 28px, 1180px);
  }

  .site-header.is-scrolled,
  .site-header.is-open {
    top: 8px;
  }

  .header-inner {
    min-height: 64px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding: 0 12px;
  }

  .brand-logo {
    width: 52px;
    height: 34px;
  }

  .brand-copy strong {
    max-width: 178px;
    font-size: 11px;
  }

  .brand-copy small {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .main-nav {
    top: calc(100% + 10px);
    left: 0;
    right: 0;
  }

  .header-phone {
    padding: 8px 9px;
    font-size: 10px;
  }

  .hero::before {
    width: auto;
    opacity: 1;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.28) 36%, rgba(0, 0, 0, 0.68) 70%, rgba(76, 72, 68, 0.52) 84%, rgba(220, 217, 212, 0.52) 94%, #fff 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.8) 72%, rgba(0, 0, 0, 0.48) 100%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 92px);
  }

  .hero::after {
    opacity: 0.24;
  }

  .hero-grid {
    min-height: auto;
    padding: 126px 0 110px;
  }

  .hero-copy h1 {
    font-size: clamp(43px, 14vw, 66px);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-visual img {
    height: 100%;
    object-position: 61% center;
  }

  .hero-background {
    object-position: 61% center;
  }

  .contact-bar {
    grid-template-columns: 1fr;
    margin-top: -58px;
  }

  .contact-bar article,
  .quote-tile {
    min-height: 112px;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 78px 0;
  }

  .section-head h2,
  .build-copy h2,
  .quote-section h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .service-grid,
  .services .service-grid,
  .feature-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 292px;
  }

  .build-block {
    padding: 64px 0;
  }

  .build-media::before {
    inset: 0;
  }

  .build-media,
  .build-media img {
    min-height: 300px;
  }

  .features {
    padding-bottom: 80px;
  }

  .feature-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .project-card {
    min-height: 310px;
  }

  .project-card:not(.project-large) h3 {
    font-size: 23px;
  }

  .contact-form {
    padding: 22px;
    box-shadow: 10px 10px 0 var(--black);
  }

  .footer-bottom {
    flex-direction: column;
  }
}

