
:root {
  --navy: #172033;
  --navy-deep: #0d1422;
  --ink: #20283a;
  --gold: #d29a1b;
  --gold-soft: #f2c85b;
  --sand: #f3f0e8;
  --paper: #faf9f5;
  --white: #ffffff;
  --line: rgba(23, 32, 51, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Tahoma, Arial, sans-serif;
  overflow-x: hidden;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

button {
  color: inherit;
  font: inherit;
}

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

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

.site-header {
  align-items: center;
  background: rgba(250, 249, 245, 0.95);
  border-bottom: 1px solid rgba(23, 32, 51, 0.1);
  display: grid;
  grid-template-columns: minmax(150px, 210px) 1fr auto;
  min-height: 86px;
  padding: 0 4.5vw;
  position: relative;
  z-index: 50;
}

.brand {
  align-items: center;
  display: flex;
  height: 72px;
  overflow: hidden;
  width: 176px;
}

.brand img {
  height: 104px;
  object-fit: contain;
  width: 104px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(22px, 2.6vw, 42px);
  justify-content: center;
}

.site-nav a {
  color: rgba(23, 32, 51, 0.68);
  font-size: 0.79rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  padding: 33px 0;
  position: relative;
  text-transform: uppercase;
}

.site-nav a::after {
  background: var(--gold);
  bottom: 23px;
  content: "";
  height: 2px;
  inset-inline-start: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

[dir="rtl"] .site-nav a::after {
  transform-origin: right;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--navy);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.lang-button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  height: 42px;
  transition: 180ms ease;
  width: 42px;
}

.lang-button:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.header-cta {
  align-items: center;
  background: var(--navy);
  color: white;
  display: flex;
  font-size: 0.77rem;
  font-weight: 800;
  gap: 20px;
  letter-spacing: 0.04em;
  padding: 16px 18px;
  text-transform: uppercase;
  transition: 180ms ease;
}

.header-cta:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.menu-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 44px;
  padding: 12px;
  width: 44px;
}

.menu-button span {
  background: var(--navy);
  display: block;
  height: 2px;
  margin: 7px 0;
  width: 100%;
}

.hero-section {
  background: var(--navy-deep);
  color: white;
  min-height: calc(100vh - 86px);
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media {
  animation: hero-in 1.3s ease both;
  background-image: url("/assets/images/hero-landscape.jpg");
  background-position: center 55%;
  background-size: cover;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 14, 25, 0.94) 0%, rgba(10, 18, 31, 0.84) 46%, rgba(10, 18, 31, 0.25) 100%),
    linear-gradient(0deg, rgba(7, 14, 25, 0.65), transparent 55%);
}

[dir="rtl"] .hero-overlay {
  background:
    linear-gradient(270deg, rgba(7, 14, 25, 0.94) 0%, rgba(10, 18, 31, 0.84) 46%, rgba(10, 18, 31, 0.25) 100%),
    linear-gradient(0deg, rgba(7, 14, 25, 0.65), transparent 55%);
}

.hero-main {
  align-items: end;
  display: grid;
  gap: 7vw;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.52fr);
  margin: 0 auto;
  min-height: calc(100vh - 166px);
  padding: clamp(80px, 10vh, 128px) 8vw 90px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  animation: rise 720ms 120ms ease both;
  max-width: 850px;
}

.eyebrow {
  align-items: center;
  color: var(--gold);
  display: flex;
  font-size: 0.71rem;
  font-weight: 850;
  gap: 13px;
  letter-spacing: 0.16em;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentColor;
  content: "";
  height: 2px;
  width: 32px;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.75);
}

.eyebrow.gold {
  color: var(--gold-soft);
}

.hero-copy h1 {
  font-size: clamp(3.3rem, 6.4vw, 7.4rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.9;
  margin: 0;
  max-width: 950px;
}

[dir="rtl"] .hero-copy h1 {
  letter-spacing: -0.04em;
}

.hero-copy h1 span,
.hero-copy h1 em {
  display: block;
}

.hero-copy h1 em {
  color: var(--gold-soft);
  font-style: normal;
  font-weight: 440;
}

.hero-copy > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.75;
  margin: 34px 0;
  max-width: 660px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 0.77rem;
  font-weight: 850;
  gap: 32px;
  letter-spacing: 0.04em;
  padding: 18px 22px;
  text-transform: uppercase;
  transition: 180ms ease;
}

.button-gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.button-gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.button-navy {
  background: var(--navy);
  color: white;
}

.button-navy:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.text-action {
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: white;
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  padding: 10px 0;
  text-transform: uppercase;
}

.hero-feature {
  animation: rise 720ms 260ms ease both;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  padding: 32px;
  transition: 220ms ease;
}

.hero-feature:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-5px);
}

.hero-feature .mini-label {
  color: var(--gold-soft);
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 34px;
  text-transform: uppercase;
}

.hero-feature strong {
  display: block;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 1.15;
}

.hero-feature p {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 18px 0 30px;
}

.hero-feature b {
  color: var(--gold-soft);
  font-size: 0.73rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-rail {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(12, 20, 34, 0.72);
  bottom: 0;
  display: flex;
  gap: 16px;
  inset-inline: 0;
  min-height: 80px;
  padding: 0 8vw;
  position: absolute;
  z-index: 3;
}

.hero-rail span {
  color: var(--gold-soft);
  font-size: 0.65rem;
  font-weight: 800;
}

.hero-rail strong {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-rail i {
  background: rgba(255, 255, 255, 0.22);
  height: 1px;
  margin: 0 12px;
  width: 50px;
}

.section {
  padding: clamp(90px, 11vw, 160px) 7vw;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.55fr);
  margin-bottom: 56px;
}

.section-heading h2 {
  color: var(--navy);
  font-size: clamp(2.45rem, 4.5vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
  max-width: 820px;
}

.section-heading > p {
  color: #657086;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

.project-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, 1fr);
}

.project-card {
  grid-column: span 6;
  min-height: 530px;
  overflow: hidden;
  position: relative;
}

.project-card:nth-child(1),
.project-card:nth-child(4) {
  grid-column: span 7;
}

.project-card:nth-child(2),
.project-card:nth-child(3) {
  grid-column: span 5;
}

.project-card a,
.project-card img,
.project-shade {
  inset: 0;
  position: absolute;
}

.project-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 100%;
}

.project-card.project-landscape:nth-child(1) img,
.project-card.project-landscape:nth-child(3) img {
  object-position: center 55%;
}

.project-shade {
  background: linear-gradient(0deg, rgba(7, 14, 25, 0.93), rgba(7, 14, 25, 0.05) 72%);
}

.project-card-topline {
  align-items: center;
  color: white;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 28px;
  position: absolute;
  right: 0;
  top: 0;
}

.project-card-topline > span:first-child {
  background: rgba(7, 14, 25, 0.74);
  backdrop-filter: blur(12px);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 10px 12px;
  text-transform: uppercase;
}

.project-link-arrow {
  align-items: center;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  font-size: 1.1rem;
  height: 44px;
  justify-content: center;
  transition: 180ms ease;
  width: 44px;
}

.project-card-copy {
  bottom: 0;
  color: white;
  left: 0;
  padding: 34px;
  position: absolute;
  right: 0;
}

.project-card-copy p {
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.project-card-copy h3 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 0 12px;
}

.project-card-copy > span {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-size: 0.86rem;
  line-height: 1.55;
  max-width: 500px;
}

.project-card:hover img {
  transform: scale(1.055);
}

.project-card:hover .project-link-arrow {
  background: var(--gold-soft);
  transform: rotate(10deg);
}

.section-link {
  border-bottom: 1px solid var(--navy);
  display: flex;
  font-size: 0.78rem;
  font-weight: 850;
  gap: 20px;
  letter-spacing: 0.06em;
  margin-inline-start: auto;
  margin-top: 45px;
  padding: 12px 0;
  text-transform: uppercase;
  width: fit-content;
}

.about-section {
  background: var(--navy);
  color: white;
  display: grid;
  gap: 8vw;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.75fr);
  padding: clamp(90px, 10vw, 150px) 8vw;
}

.about-copy h2 {
  font-size: clamp(2.7rem, 5vw, 5.6rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0 0 38px;
  max-width: 800px;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.63);
  line-height: 1.8;
  max-width: 720px;
}

.about-copy p.lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
}

.process-panel {
  background: #202b41;
  padding: 38px;
}

.process-step {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 16px;
  grid-template-columns: 34px 1fr auto;
  padding: 24px 0;
}

.process-step span {
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 800;
}

.process-step strong {
  font-size: 1rem;
}

.process-step b {
  color: rgba(255, 255, 255, 0.35);
}

.services-section {
  background: var(--sand);
}

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

.service-card {
  background: var(--paper);
  border: 1px solid rgba(23, 32, 51, 0.09);
  min-height: 350px;
  padding: 38px;
  position: relative;
  transition: 180ms ease;
}

.service-card.featured {
  background: var(--gold);
  grid-row: span 2;
  min-height: 701px;
}

.service-card > span {
  color: rgba(23, 32, 51, 0.5);
  font-size: 0.68rem;
  font-weight: 850;
}

.service-card h3 {
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 60px 0 18px;
  max-width: 500px;
}

.service-card.featured h3 {
  font-size: clamp(2.5rem, 4.5vw, 5.2rem);
  margin-top: 150px;
}

.service-card p {
  color: #657086;
  line-height: 1.72;
  margin: 0;
  max-width: 520px;
}

.service-card.featured p {
  color: rgba(23, 32, 51, 0.74);
  font-size: 1.05rem;
}

.service-card a {
  align-items: center;
  border: 1px solid var(--line);
  bottom: 34px;
  display: flex;
  height: 46px;
  justify-content: center;
  position: absolute;
  right: 34px;
  width: 46px;
}

[dir="rtl"] .service-card a {
  left: 34px;
  right: auto;
}

.service-card:hover:not(.featured) {
  background: white;
  transform: translateY(-4px);
}

.contact-section {
  background: var(--navy-deep);
  color: white;
  display: grid;
  gap: 10vw;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  padding: clamp(90px, 10vw, 150px) 8vw;
}

.contact-copy h2 {
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  letter-spacing: -0.055em;
  line-height: 0.97;
  margin: 0;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 620px;
}

.contact-actions {
  align-self: center;
}

.contact-actions a {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 12px;
  grid-template-columns: 110px 1fr auto;
  padding: 25px 0;
  transition: 180ms ease;
}

.contact-actions a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-actions span {
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-actions strong {
  font-size: 0.95rem;
}

.contact-actions b {
  color: rgba(255, 255, 255, 0.4);
}

.contact-actions a:hover {
  padding-inline: 12px;
}

.site-footer {
  align-items: end;
  background: var(--paper);
  display: grid;
  gap: 35px;
  grid-template-columns: 1fr auto;
  padding: 60px 8vw 30px;
}

.footer-brand img {
  height: 110px;
  object-fit: contain;
  object-position: left center;
  width: 160px;
}

[dir="rtl"] .footer-brand img {
  object-position: right center;
}

.footer-brand p {
  color: #657086;
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.copyright {
  border-top: 1px solid var(--line);
  color: #7b8496;
  font-size: 0.68rem;
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
}

.portfolio-hero {
  background: var(--navy);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.portfolio-hero-copy {
  align-self: center;
  padding: 90px 7vw;
}

.portfolio-hero h1 {
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
  margin: 0 0 30px;
}

.portfolio-hero p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 620px;
}

.portfolio-hero-image {
  background:
    linear-gradient(0deg, rgba(13, 20, 34, 0.28), rgba(13, 20, 34, 0.05)),
    url("/assets/images/hero.jpg") center/cover;
}

.portfolio-list {
  padding-top: 70px;
}

.filter-row {
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
  padding-bottom: 20px;
}

.filter-row button {
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 13px 16px;
  text-transform: uppercase;
  transition: 180ms ease;
}

.filter-row button:hover,
.filter-row button.active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.portfolio-grid .project-card {
  grid-column: span 6;
  min-height: 480px;
}

.detail-hero {
  background: var(--navy-deep);
  color: white;
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.detail-hero > img,
.detail-shade {
  inset: 0;
  position: absolute;
}

.detail-hero > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.detail-shade {
  background: linear-gradient(90deg, rgba(7, 14, 25, 0.94), rgba(7, 14, 25, 0.34));
}

[dir="rtl"] .detail-shade {
  background: linear-gradient(270deg, rgba(7, 14, 25, 0.94), rgba(7, 14, 25, 0.34));
}

.detail-title {
  max-width: 980px;
  padding: 110px 8vw;
  position: relative;
}

.detail-title > a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 90px;
  text-transform: uppercase;
}

.detail-title h1 {
  font-size: clamp(3.2rem, 6.5vw, 7.4rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
  margin: 0;
}

.detail-title p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 670px;
}

.detail-content {
  display: grid;
  gap: 9vw;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.62fr);
  padding: clamp(90px, 10vw, 150px) 8vw;
}

.detail-overview h2 {
  color: var(--navy);
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  letter-spacing: -0.05em;
  line-height: 1.03;
  margin: 0 0 28px;
}

.detail-overview > p {
  color: #657086;
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 800px;
}

.project-facts {
  border-top: 3px solid var(--gold);
}

.project-facts div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
  padding: 24px 0;
}

.project-facts span {
  color: #7c8597;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project-facts strong {
  color: var(--navy);
  line-height: 1.4;
}

.scope-section {
  background: var(--navy);
  color: white;
  padding: clamp(80px, 9vw, 130px) 8vw;
}

.scope-list {
  margin-top: 45px;
}

.scope-list > div {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  gap: 22px;
  grid-template-columns: 54px 1fr auto;
  padding: 27px 0;
}

.scope-list > div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.scope-list span {
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 850;
}

.scope-list strong {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
}

.scope-list b {
  color: rgba(255, 255, 255, 0.35);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-in {
  from {
    filter: saturate(0.65);
    opacity: 0.4;
    transform: scale(1.08);
  }
  to {
    filter: saturate(1);
    opacity: 1;
    transform: scale(1.03);
  }
}

@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: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 78px;
  }

  .menu-button {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .header-actions {
    margin-inline-end: 54px;
    position: absolute;
    right: 4.5vw;
  }

  [dir="rtl"] .header-actions {
    left: 4.5vw;
    right: auto;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    align-items: stretch;
    background: var(--paper);
    border-top: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    grid-column: 1 / -1;
    padding: 16px 4.5vw 24px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
  }

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

  .hero-main {
    align-items: center;
    grid-template-columns: 1fr;
    padding-bottom: 130px;
  }

  .hero-feature {
    display: none;
  }

  .section-heading,
  .about-section,
  .contact-section,
  .detail-content {
    gap: 50px;
    grid-template-columns: 1fr;
  }

  .process-panel {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0 20px;
  }

  .brand {
    height: 66px;
    width: 135px;
  }

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

  .header-actions {
    right: 20px;
  }

  [dir="rtl"] .header-actions {
    left: 20px;
  }

  .hero-section {
    min-height: 760px;
  }

  .hero-main {
    min-height: 680px;
    padding: 90px 24px 145px;
  }

  .hero-copy h1 {
    font-size: clamp(3.4rem, 16vw, 5.2rem);
  }

  .hero-copy > p {
    font-size: 0.95rem;
  }

  .hero-rail {
    gap: 10px;
    overflow: hidden;
    padding: 0 24px;
  }

  .hero-rail i {
    margin: 0 4px;
    min-width: 20px;
    width: 20px;
  }

  .hero-rail strong {
    font-size: 0.6rem;
  }

  .section {
    padding: 82px 20px;
  }

  .section-heading {
    align-items: start;
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: 2.8rem;
  }

  .project-card,
  .project-card:nth-child(n),
  .portfolio-grid .project-card {
    grid-column: 1 / -1;
    min-height: 470px;
  }

  .project-card-copy {
    padding: 25px;
  }

  .about-section,
  .contact-section,
  .scope-section {
    padding: 82px 20px;
  }

  .about-copy h2,
  .contact-copy h2 {
    font-size: 3rem;
  }

  .process-panel {
    padding: 25px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card.featured {
    grid-row: auto;
    min-height: 420px;
  }

  .service-card.featured h3 {
    font-size: 3rem;
    margin-top: 95px;
  }

  .contact-actions a {
    align-items: start;
    grid-template-columns: 1fr auto;
  }

  .contact-actions span {
    grid-column: 1 / -1;
  }

  .site-footer {
    align-items: start;
    grid-template-columns: 1fr;
    padding: 50px 20px 25px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

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

  .portfolio-hero-copy {
    padding: 90px 20px;
  }

  .portfolio-hero-image {
    min-height: 380px;
  }

  .detail-hero {
    min-height: 690px;
  }

  .detail-title {
    padding: 70px 20px;
  }

  .detail-title > a {
    margin-bottom: 100px;
  }

  .detail-title h1 {
    font-size: 3.8rem;
  }

  .detail-content {
    padding: 82px 20px;
  }
}
