/* =========================
   RESET / BASE
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --container-width: 1440px;
  --container-padding: 28px;

  --color-bg: #0a0a0a;
  --color-bg-deep: #080808;
  --color-text: #f5f5f5;
  --color-text-muted: rgba(255, 255, 255, 0.78);
  --color-text-soft: rgba(255, 255, 255, 0.42);
  --color-accent: #f28b14;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

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

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

p {
  margin-bottom: 0;
}

/* =========================
   GLOBAL LAYOUT
========================= */

.site-shell {
  width: 100%;
  min-height: 100vh;
  background: var(--color-bg);
}

.site-main {
  width: 100%;
}

.container {
  width: 100%;
  max-width: calc(var(--container-width) + (var(--container-padding) * 2));
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section {
  position: relative;
}

.section-head {
  margin-bottom: 24px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

/* =========================
   HEADER / NAVBAR
========================= */

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 50;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.44) 65%,
    rgba(0, 0, 0, 0) 100%
  );
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  display: block;
  width: auto;
  height: 17px;
  max-width: none;
}

.menu-toggle {
  display: inline-flex;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

/* =========================
   HERO
========================= */

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100svh;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background-image: url("img/hero-home.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.18) 46%,
      rgba(0, 0, 0, 0.34) 72%,
      rgba(0, 0, 0, 0.52) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.46) 0%,
      rgba(0, 0, 0, 0.1) 24%,
      rgba(0, 0, 0, 0.08) 55%,
      rgba(0, 0, 0, 0.24) 76%,
      rgba(0, 0, 0, 0.52) 100%
    );
}

.hero-section__bottom-fade {
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -2px;
  height: 38vh;
  min-height: 220px;
  max-height: 420px;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at center bottom,
      rgba(8, 8, 8, 0) 0%,
      rgba(8, 8, 8, 0.08) 14%,
      rgba(8, 8, 8, 0.24) 30%,
      rgba(8, 8, 8, 0.52) 50%,
      rgba(8, 8, 8, 0.82) 72%,
      rgba(8, 8, 8, 0.96) 88%,
      #090909 100%
    );
  filter: blur(18px);
  transform: translateY(20%);
}

.hero-section__inner {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  transform: translateY(-3.5vh);
}

.hero-center__logo {
  width: min(58vw, 700px);
  min-width: 280px;
  height: auto;
  filter:
    drop-shadow(0 3px 10px rgba(255, 255, 255, 0.08))
    drop-shadow(0 10px 30px rgba(0, 0, 0, 0.32));
}

.hero-center__subtitle {
  margin: 0;
  padding-left: 0.35em;
  color: var(--color-text-soft);
  font-size: clamp(0.9rem, 1.05vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 102px;
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  transform: translateX(-50%);
}

.hero-scroll span {
  display: block;
  width: 18px;
  height: 18px;
  border-right: 3px solid rgba(255, 255, 255, 0.92);
  border-bottom: 3px solid rgba(255, 255, 255, 0.92);
  transform: rotate(45deg);
}

.hero-scroll span:first-child {
  margin-bottom: -8px;
}

.hero-scroll span:last-child {
  opacity: 0.95;
}

/* =========================
   SECOND SECTION / ABOUT
========================= */

.section-next {
  position: relative;
  margin-top: -250px;
  min-height: 100svh;
  min-height: 100vh;
  padding-top: 315px;
  padding-bottom: 70px;
  overflow: hidden;
  background:
    linear-gradient(
      to bottom,
      rgba(9, 9, 9, 0) 0%,
      rgba(9, 9, 9, 0.28) 14%,
      rgba(9, 9, 9, 0.72) 28%,
      #0a0a0a 42%,
      #090909 100%
    );
}

.section-next::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 360px;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 10, 10, 0) 0%,
      rgba(10, 10, 10, 0.20) 18%,
      rgba(10, 10, 10, 0.55) 40%,
      rgba(10, 10, 10, 0.86) 66%,
      #0a0a0a 100%
    );
}

.about-section__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - 65px);
}

.about-section__top {
  display: grid;
  grid-template-columns: minmax(320px, 450px) minmax(640px, 1fr);
  align-items: center;
  gap: 72px;
}

.about-section__content {
  padding-top: 0;
}

.about-section__title {
  margin: 0 0 42px;
  color: #ffffff;
  font-size: clamp(2.1rem, 3vw, 3.25rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-section__title span {
  display: block;
  margin-top: 6px;
  color: var(--color-accent);
  font-size: 0.62em;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
}

.about-section__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 470px;
}

.about-section__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.8;
}

.about-section__media {
  position: relative;
  width: 100%;
}

.about-section__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.6;
  object-fit: cover;
  background: #151515;
}

.about-section__bottom {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 42px;
  margin-top: 72px;
  align-items: start;
}

.about-section__label {
  color: var(--color-accent);
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  padding-top: 58px;
}

.about-section__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  min-height: 62px;
  padding: 0 30px;
  background:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.08) 20%,
      rgba(255, 255, 255, 0.025) 52%,
      rgba(255, 255, 255, 0.07) 100%
    );
}

.feature-row:nth-child(1) {
  margin-left: 0;
}

.feature-row:nth-child(2) {
  margin-left: 28px;
}

.feature-row:nth-child(3) {
  margin-left: 56px;
}

.feature-row:nth-child(4) {
  margin-left: 84px;
}

.feature-row__title {
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
}

.feature-row__text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.45;
}

/* =========================
   SECTION 03 / SERVICES HIGHLIGHT
========================= */

.services-highlight-section {
  position: relative;
  width: 100%;
  min-height: 760px;
  overflow: hidden;
  background: #0b0b0b;
  isolation: isolate;
}

.services-highlight-section__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("img/services-bg.png") center center / cover no-repeat;
}

.services-highlight-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      to right,
      rgba(8, 8, 8, 0.88) 0%,
      rgba(8, 8, 8, 0.78) 24%,
      rgba(8, 8, 8, 0.60) 42%,
      rgba(8, 8, 8, 0.24) 58%,
      rgba(8, 8, 8, 0.06) 72%,
      rgba(8, 8, 8, 0) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(8, 8, 8, 0.62) 0%,
      rgba(8, 8, 8, 0.12) 18%,
      rgba(8, 8, 8, 0.12) 78%,
      rgba(8, 8, 8, 0.62) 100%
    );
}

.services-highlight-section__orange-glow {
  position: absolute;
  top: 0;
  right: -6%;
  width: 34%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at right center,
      rgba(242, 139, 20, 0.95) 0%,
      rgba(242, 139, 20, 0.62) 28%,
      rgba(242, 139, 20, 0.22) 54%,
      rgba(242, 139, 20, 0) 78%
    );
  filter: blur(12px);
  opacity: 0.96;
}

.services-highlight-section__top-bar,
.services-highlight-section__bottom-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 54px;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.08) 14%,
      rgba(255, 255, 255, 0.025) 34%,
      rgba(255, 255, 255, 0.015) 66%,
      rgba(242, 139, 20, 0.14) 86%,
      rgba(242, 139, 20, 0.24) 100%
    );
}

.services-highlight-section__top-bar {
  top: 0;
}

.services-highlight-section__bottom-bar {
  bottom: 0;
}

.services-highlight-section__inner {
  position: relative;
  z-index: 5;
  min-height: 760px;
  display: flex;
  align-items: center;
}

.services-highlight-section__content {
  max-width: 660px;
  padding-top: 36px;
  padding-bottom: 36px;
}

.services-highlight-section__title {
  margin: 0 0 34px;
  color: #ffffff;
  font-size: clamp(2.1rem, 3vw, 3.1rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.services-highlight-section__title span {
  color: var(--color-accent);
}

.services-highlight-section__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 690px;
}

.services-highlight-section__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.9;
}

/* =========================
   SECTION 04 / WHY US
========================= */

.why-us-section {
  position: relative;
  padding: 34px 0 72px;
  background: #0a0a0a;
  overflow: hidden;
}

.why-us-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at top center,
      rgba(255, 255, 255, 0.035) 0%,
      rgba(255, 255, 255, 0.012) 18%,
      rgba(255, 255, 255, 0) 48%
    );
}

.why-us-section__inner {
  position: relative;
  z-index: 2;
}

.why-us-section__header {
  margin-bottom: 34px;
}

.why-us-section__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 2.9vw, 3.2rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.why-us-section__title span {
  color: var(--color-accent);
}

.why-us-section__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 100%;
}

.why-us-section__content p {
  margin: 0;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  line-height: 1.82;
}

.why-us-section__content strong {
  color: #ffffff;
  font-weight: 800;
}

.why-us-section__media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.why-us-media-card {
  position: relative;
}

.why-us-media-card__surface {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.025) 24%,
      rgba(255, 255, 255, 0.01) 100%
    ),
    linear-gradient(
      to bottom,
      #2b2b2b 0%,
      #161616 48%,
      #0f0f0f 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.why-us-media-card__surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0) 26%,
      rgba(0, 0, 0, 0.08) 100%
    );
}

.why-us-media-card__surface::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at center,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.01) 28%,
      rgba(255, 255, 255, 0) 62%
    );
  pointer-events: none;
}

.why-us-media-card__label {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.why-us-media-card__controls {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 3;
}

.why-us-media-card__progress {
  position: relative;
  width: 100%;
  height: 4px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.why-us-media-card__progress-fill {
  display: block;
  width: 42%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
}

.why-us-media-card__progress-fill--alt {
  width: 28%;
}

.why-us-media-card__controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.why-us-media-card__left,
.why-us-media-card__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.why-us-media-card__time {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.86rem;
  font-weight: 700;
}

.why-us-media-card__icon {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.why-us-media-card__icon--play {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid rgba(255, 255, 255, 0.96);
}

.why-us-media-card__icon--volume {
  width: 14px;
  height: 14px;
  border-left: 3px solid rgba(255, 255, 255, 0.96);
  border-top: 3px solid rgba(255, 255, 255, 0.96);
  border-bottom: 3px solid rgba(255, 255, 255, 0.96);
}

.why-us-media-card__icon--volume::after {
  content: "";
  position: absolute;
  top: 1px;
  right: -7px;
  width: 7px;
  height: 7px;
  border-top: 2px solid rgba(255, 255, 255, 0.96);
  border-right: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 0 6px 0 0;
  transform: rotate(45deg);
}

.why-us-media-card__icon--expand {
  width: 15px;
  height: 15px;
}

.why-us-media-card__icon--expand::before,
.why-us-media-card__icon--expand::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.96);
}

.why-us-media-card__icon--expand::before {
  clip-path: polygon(0 0, 38% 0, 38% 10%, 10% 10%, 10% 38%, 0 38%);
}

.why-us-media-card__icon--expand::after {
  clip-path: polygon(62% 90%, 90% 90%, 90% 62%, 100% 62%, 100% 100%, 62% 100%);
}

.why-us-media-card__icon--menu {
  width: 4px;
  height: 18px;
}

.why-us-media-card__icon--menu::before,
.why-us-media-card__icon--menu::after {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
}

.why-us-media-card__icon--menu::before {
  top: 0;
}

.why-us-media-card__icon--menu::after {
  bottom: 0;
}

.why-us-media-card__icon--menu .why-us-media-card__icon-dot {
  position: absolute;
  top: 7px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
}

.why-us-section__scroll {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 54px auto 0;
  left: 50%;
  transform: translateX(-50%);
}

.why-us-section__scroll span {
  display: block;
  width: 18px;
  height: 18px;
  border-right: 3px solid rgba(255, 255, 255, 0.92);
  border-bottom: 3px solid rgba(255, 255, 255, 0.92);
  transform: rotate(45deg);
}

.why-us-section__scroll span:first-child {
  margin-bottom: -8px;
}

/* =========================
   SECTION / SUPPORT + REALIZATIONS
========================= */

.support-realizations-section {
  position: relative;
  background: #0a0a0a;
  overflow: hidden;
}

.support-realizations-section__hero {
  position: relative;
  padding: 54px 0 180px;
  overflow: hidden;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.52) 0%,
      rgba(0, 0, 0, 0.44) 38%,
      rgba(0, 0, 0, 0.62) 72%,
      rgba(0, 0, 0, 0.82) 100%
    ),
    url("img/support-bg.png") center center / cover no-repeat;
}

.support-realizations-section__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.035) 0%,
      rgba(255, 255, 255, 0.01) 12%,
      rgba(255, 255, 255, 0) 22%,
      rgba(255, 255, 255, 0.02) 36%,
      rgba(255, 255, 255, 0) 52%,
      rgba(255, 255, 255, 0.018) 68%,
      rgba(255, 255, 255, 0) 100%
    );
  opacity: 0.55;
}

.support-realizations-section__hero::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -2px;
  height: 220px;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at center bottom,
      rgba(10, 10, 10, 0) 0%,
      rgba(10, 10, 10, 0.12) 18%,
      rgba(10, 10, 10, 0.34) 40%,
      rgba(10, 10, 10, 0.70) 68%,
      rgba(10, 10, 10, 0.95) 88%,
      #0a0a0a 100%
    );
  filter: blur(16px);
  transform: translateY(18%);
}

.support-realizations-section__content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
}

.support-realizations-section__title {
  margin: 0 0 34px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.support-realizations-section__content p {
  margin: 0 0 28px;
  max-width: 1320px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.85;
}

.support-realizations-section__brandline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0 28px;
}

.support-realizations-section__brandlogo {
  width: auto;
  height: 24px;
  max-width: none;
  filter: brightness(0) saturate(100%) invert(56%) sepia(85%) saturate(1731%)
    hue-rotate(359deg) brightness(100%) contrast(103%);
}

.support-realizations-section__brandline span {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.support-realizations-section__projects {
  position: relative;
  margin-top: -84px;
  padding: 0 0 50px;
}

.support-realizations-section__projects-title {
  margin: 0 0 34px;
  color: #ffffff;
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.projects-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 22px;
  gap: 20px;
}

.project-tile {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.02) 22%,
      rgba(255, 255, 255, 0.005) 100%
    ),
    linear-gradient(
      to bottom,
      #8b949b 0%,
      #6f7780 36%,
      #3f454c 72%,
      #141414 100%
    );
}

.project-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.008) 18%,
      rgba(0, 0, 0, 0.08) 100%
    );
}

.project-tile::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 10, 10, 0) 0%,
      rgba(10, 10, 10, 0.24) 26%,
      rgba(10, 10, 10, 0.62) 68%,
      rgba(10, 10, 10, 0.92) 100%
    );
}

.project-tile--01 {
  grid-column: span 1;
  grid-row: span 15;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.20) 0%,
      rgba(255, 255, 255, 0.06) 20%,
      rgba(255, 255, 255, 0.01) 100%
    ),
    linear-gradient(
      to bottom,
      #f1f1f1 0%,
      #d8d8d8 38%,
      #8e9499 70%,
      #232323 100%
    );
}

.project-tile--02 {
  grid-column: span 1;
  grid-row: span 20;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.09) 0%,
      rgba(255, 255, 255, 0.03) 30%,
      rgba(255, 255, 255, 0.01) 100%
    ),
    linear-gradient(
      to bottom,
      #8d9299 0%,
      #7c828a 28%,
      #545960 62%,
      #1a1a1a 100%
    );
}

.project-tile--03 {
  grid-column: span 1;
  grid-row: span 18;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.10) 0%,
      rgba(255, 255, 255, 0.025) 24%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(
      to bottom,
      #9aa1a7 0%,
      #7f868d 44%,
      #4a4f55 72%,
      #151515 100%
    );
}

.project-tile--04 {
  grid-column: span 1;
  grid-row: span 10;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.09) 0%,
      rgba(255, 255, 255, 0.02) 22%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(
      to bottom,
      #939ba1 0%,
      #727b83 38%,
      #3f454b 70%,
      #161616 100%
    );
}

.project-tile--05 {
  grid-column: span 1;
  grid-row: span 8;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.07) 0%,
      rgba(255, 255, 255, 0.02) 24%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(
      to bottom,
      #bcc2c7 0%,
      #8f979e 34%,
      #5a6067 68%,
      #181818 100%
    );
}

.project-tile--06 {
  grid-column: span 1;
  grid-row: span 10;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.02) 30%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(
      to bottom,
      #96a0a7 0%,
      #7c848d 36%,
      #474d54 72%,
      #151515 100%
    );
}

.project-tile--07 {
  grid-column: span 1;
  grid-row: span 20;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.09) 0%,
      rgba(255, 255, 255, 0.025) 18%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(
      to bottom,
      #aeb4ba 0%,
      #8d949c 36%,
      #565b62 68%,
      #141414 100%
    );
}

.project-tile--08 {
  grid-column: span 1;
  grid-row: span 13;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.018) 20%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(
      to bottom,
      #636b72 0%,
      #474d54 42%,
      #2b2f34 70%,
      #121212 100%
    );
}

.project-tile--09 {
  grid-column: span 1;
  grid-row: span 17;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.07) 0%,
      rgba(255, 255, 255, 0.02) 24%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(
      to bottom,
      #aab1b8 0%,
      #8e959c 36%,
      #676d73 62%,
      #1b1b1b 100%
    );
}

.project-tile__caption {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  line-height: 1.35;
}

.project-tile__caption strong {
  font-weight: 800;
  color: #ffffff;
}

.projects-mosaic__expand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 22px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  line-height: 1;
  cursor: pointer;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.projects-mosaic__expand span {
  font-size: 1rem;
  transform: translateY(-1px);
}

/* =========================
   FOOTER / SCREEN-MATCHED
========================= */

.marsen-footer {
  background: #0a0a0a;
  padding: 18px 0 24px;
}

.marsen-footer__inner {
  width: 100%;
}

.marsen-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.marsen-footer__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 34px;
}

.marsen-footer__nav a {
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  opacity: 0.92;
}

.marsen-footer__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.marsen-footer__logo img {
  display: block;
  width: auto;
  height: 18px;
  max-width: none;
}

.marsen-footer__line {
  width: 100%;
  height: 1px;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.55);
}

.marsen-footer__bottom {
  display: flex;
  justify-content: flex-end;
  padding-top: 14px;
}

.marsen-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  line-height: 1.2;
}

/* =========================
   LARGE TABLET / SMALL DESKTOP
========================= */

@media (max-width: 1200px) {
  .section-next {
    margin-top: -210px;
    padding-top: 265px;
    padding-bottom: 72px;
  }

  .about-section__container {
    min-height: auto;
  }

  .about-section__top {
    grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
    gap: 46px;
  }

  .about-section__bottom {
    grid-template-columns: 190px 1fr;
    gap: 30px;
    margin-top: 58px;
  }

  .feature-row {
    grid-template-columns: 190px 1fr;
    padding: 0 22px;
  }

  .feature-row:nth-child(2) {
    margin-left: 18px;
  }

  .feature-row:nth-child(3) {
    margin-left: 36px;
  }

  .feature-row:nth-child(4) {
    margin-left: 54px;
  }

  .services-highlight-section {
    min-height: 700px;
  }

  .services-highlight-section__inner {
    min-height: 700px;
  }

  .services-highlight-section__content {
    max-width: 590px;
  }

  .services-highlight-section__orange-glow {
    width: 38%;
  }

  .support-realizations-section__hero {
    padding-bottom: 150px;
  }

  .projects-mosaic {
    grid-auto-rows: 18px;
    gap: 16px;
  }
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {
  :root {
    --container-padding: 22px;
  }

  .header-inner {
    min-height: 76px;
  }

  .logo img {
    height: 15px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .menu-toggle span {
    width: 31px;
  }

  .hero-center__logo {
    width: min(68vw, 560px);
    min-width: 240px;
  }

  .hero-center__subtitle {
    letter-spacing: 0.28em;
    font-size: clamp(0.78rem, 1.5vw, 1rem);
  }

  .hero-scroll {
    bottom: 88px;
  }

  .hero-section__bottom-fade {
    height: 30vh;
    min-height: 170px;
    max-height: 280px;
    filter: blur(12px);
  }

  .section-next {
    margin-top: -150px;
    min-height: auto;
    padding-top: 190px;
    padding-bottom: 82px;
  }

  .section-next::before {
    height: 240px;
  }

  .about-section__top {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-section__content {
    max-width: 760px;
  }

  .about-section__text {
    max-width: 100%;
  }

  .about-section__bottom {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 52px;
  }

  .about-section__label {
    padding-top: 0;
  }

  .feature-row {
    grid-template-columns: 180px 1fr;
  }

  .feature-row:nth-child(1),
  .feature-row:nth-child(2),
  .feature-row:nth-child(3),
  .feature-row:nth-child(4) {
    margin-left: 0;
  }

  .services-highlight-section {
    min-height: 640px;
  }

  .services-highlight-section__inner {
    min-height: 640px;
    align-items: center;
  }

  .services-highlight-section__content {
    max-width: 540px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .services-highlight-section__title {
    margin-bottom: 28px;
  }

  .services-highlight-section__text {
    gap: 24px;
  }

  .services-highlight-section__text p {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .services-highlight-section__orange-glow {
    width: 42%;
    opacity: 0.9;
  }

  .services-highlight-section__top-bar,
  .services-highlight-section__bottom-bar {
    height: 44px;
  }

  .why-us-section {
    padding: 30px 0 64px;
  }

  .why-us-section__header {
    margin-bottom: 28px;
  }

  .why-us-section__content {
    gap: 24px;
  }

  .why-us-section__content p {
    font-size: 0.98rem;
    line-height: 1.74;
  }

  .why-us-section__media-grid {
    gap: 18px;
    margin-top: 34px;
  }

  .why-us-media-card__label {
    top: 18px;
    left: 18px;
    font-size: 0.76rem;
  }

  .support-realizations-section__hero {
    padding: 46px 0 130px;
  }

  .support-realizations-section__title {
    margin-bottom: 28px;
  }

  .support-realizations-section__content p {
    margin-bottom: 24px;
    font-size: 0.96rem;
    line-height: 1.76;
  }

  .support-realizations-section__brandlogo {
    height: 22px;
  }

  .support-realizations-section__brandline span {
    font-size: 1.5rem;
  }

  .support-realizations-section__projects {
    margin-top: -56px;
  }

  .projects-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 20px;
  }

  .project-tile--04,
  .project-tile--05,
  .project-tile--06,
  .project-tile--07,
  .project-tile--08,
  .project-tile--09 {
    grid-column: span 1;
  }

  .marsen-footer {
    padding: 18px 0 20px;
  }

  .marsen-footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .marsen-footer__logo {
    align-self: flex-end;
  }

  .marsen-footer__bottom {
    justify-content: flex-start;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  :root {
    --container-padding: 16px;
  }

  .header-inner {
    min-height: 68px;
  }

  .logo img {
    height: 13px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    gap: 5px;
  }

  .menu-toggle span {
    width: 27px;
    height: 2px;
  }

  .hero-center {
    gap: 10px;
    transform: translateY(-2vh);
  }

  .hero-center__logo {
    width: min(78vw, 420px);
    min-width: 210px;
  }

  .hero-center__subtitle {
    padding-left: 0.22em;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
  }

  .hero-scroll {
    bottom: 72px;
    width: 40px;
    height: 40px;
  }

  .hero-scroll span {
    width: 15px;
    height: 15px;
    border-right-width: 2.5px;
    border-bottom-width: 2.5px;
  }

  .hero-section__bottom-fade {
    height: 24vh;
    min-height: 130px;
    max-height: 210px;
    filter: blur(9px);
  }

  .section-next {
    margin-top: -95px;
    padding-top: 125px;
    padding-bottom: 64px;
  }

  .section-next::before {
    height: 160px;
  }

  .about-section__title {
    margin-bottom: 26px;
  }

  .about-section__text {
    gap: 20px;
  }

  .about-section__text p {
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .about-section__top {
    gap: 28px;
  }

  .about-section__bottom {
    margin-top: 42px;
  }

  .about-section__label {
    font-size: 2rem;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding: 16px 16px;
  }

  .services-highlight-section {
    min-height: auto;
  }

  .services-highlight-section__inner {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 96px;
    align-items: flex-start;
  }

  .services-highlight-section__content {
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .services-highlight-section__title {
    font-size: 1.9rem;
    margin-bottom: 24px;
  }

  .services-highlight-section__text {
    gap: 20px;
  }

  .services-highlight-section__text p {
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .services-highlight-section__overlay {
    background:
      linear-gradient(
        to right,
        rgba(8, 8, 8, 0.86) 0%,
        rgba(8, 8, 8, 0.78) 100%
      ),
      linear-gradient(
        to bottom,
        rgba(8, 8, 8, 0.56) 0%,
        rgba(8, 8, 8, 0.20) 24%,
        rgba(8, 8, 8, 0.32) 100%
      );
  }

  .services-highlight-section__orange-glow {
    right: -18%;
    width: 66%;
    opacity: 0.78;
  }

  .services-highlight-section__top-bar,
  .services-highlight-section__bottom-bar {
    height: 34px;
  }

  .why-us-section {
    padding: 28px 0 56px;
  }

  .why-us-section__title {
    font-size: 1.9rem;
  }

  .why-us-section__content p {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .why-us-section__media-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .why-us-media-card__controls {
    right: 14px;
    bottom: 12px;
    left: 14px;
  }

  .why-us-media-card__time {
    font-size: 0.8rem;
  }

  .why-us-section__scroll {
    margin-top: 42px;
  }

  .support-realizations-section__hero {
    padding: 40px 0 110px;
  }

  .support-realizations-section__title {
    font-size: 1.9rem;
  }

  .support-realizations-section__content p {
    font-size: 0.93rem;
    line-height: 1.68;
  }

  .support-realizations-section__brandline {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .support-realizations-section__brandline span {
    font-size: 1.3rem;
  }

  .support-realizations-section__projects {
    margin-top: -34px;
  }

  .support-realizations-section__projects-title {
    margin-bottom: 24px;
    font-size: 1.7rem;
  }

  .projects-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 18px;
    gap: 14px;
  }

  .project-tile__caption {
    top: 14px;
    left: 14px;
    font-size: 0.86rem;
  }

  .marsen-footer__nav {
    gap: 16px 24px;
  }

  .marsen-footer__nav a {
    font-size: 0.84rem;
  }

  .marsen-footer__logo img {
    height: 16px;
  }

  .marsen-footer__bottom p {
    font-size: 0.78rem;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
  .logo img {
    height: 12px;
  }

  .hero-center__logo {
    width: min(82vw, 320px);
    min-width: 180px;
  }

  .hero-center__subtitle {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .hero-scroll {
    bottom: 64px;
  }

  .section-next {
    margin-top: -70px;
    padding-top: 100px;
    padding-bottom: 52px;
  }

  .about-section__title {
    font-size: 1.85rem;
  }

  .about-section__label {
    font-size: 1.8rem;
  }

  .about-section__text p {
    font-size: 0.91rem;
  }

  .services-highlight-section__inner {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .services-highlight-section__title {
    font-size: 1.65rem;
  }

  .services-highlight-section__text p {
    font-size: 0.9rem;
    line-height: 1.66;
  }

  .why-us-section__title {
    font-size: 1.7rem;
  }

  .why-us-section__content {
    gap: 20px;
  }

  .why-us-section__content p {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .why-us-media-card__label {
    top: 14px;
    left: 14px;
    font-size: 0.7rem;
  }

  .why-us-media-card__left,
  .why-us-media-card__right {
    gap: 10px;
  }

  .why-us-media-card__time {
    font-size: 0.76rem;
  }

  .support-realizations-section__hero {
    padding: 34px 0 96px;
  }

  .support-realizations-section__title {
    font-size: 1.65rem;
  }

  .support-realizations-section__content p {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .support-realizations-section__brandlogo {
    height: 20px;
  }

  .support-realizations-section__brandline span {
    font-size: 1.12rem;
  }

  .projects-mosaic {
    grid-template-columns: 1fr;
  }

  .marsen-footer__nav {
    gap: 14px 18px;
  }

  .marsen-footer__nav a {
    font-size: 0.78rem;
  }
}

/* =========================
   HERO LOAD ANIMATIONS
========================= */

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

@keyframes arrowBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.hero-center__logo {
  animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.hero-center__subtitle {
  animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.hero-scroll {
  animation: arrowBounce 2.2s ease-in-out 1.4s infinite;
}

/* =========================
   SCROLL REVEAL
========================= */

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger – feature rows */
.feature-row[data-animate]:nth-child(1) { transition-delay: 0s; }
.feature-row[data-animate]:nth-child(2) { transition-delay: 0.1s; }
.feature-row[data-animate]:nth-child(3) { transition-delay: 0.2s; }
.feature-row[data-animate]:nth-child(4) { transition-delay: 0.3s; }

/* Stagger – media cards */
.why-us-media-card[data-animate]:nth-child(1) { transition-delay: 0s; }
.why-us-media-card[data-animate]:nth-child(2) { transition-delay: 0.13s; }

/* =========================
   NAVIGATION OVERLAY
========================= */

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.44s;
}

.nav-overlay.is-open {
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.nav-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  transition: opacity 0.36s ease;
  cursor: pointer;
}

.nav-overlay.is-open .nav-overlay__backdrop {
  opacity: 1;
}

.nav-overlay__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 86vw);
  background: #0e0e0e;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 44px;
  transform: translateX(100%);
  transition: transform 0.44s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-overlay.is-open .nav-overlay__panel {
  transform: translateX(0);
}

.nav-overlay__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.nav-overlay__close span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
}

.nav-overlay__close span:first-child { transform: rotate(45deg); }
.nav-overlay__close span:last-child  { transform: rotate(-45deg); }

.nav-overlay__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-overlay__link {
  display: block;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.22s ease, padding-left 0.22s ease;
}

.nav-overlay__link:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-overlay__link:hover {
  color: var(--color-accent);
  padding-left: 10px;
}

/* Hamburger → X */

.menu-toggle span {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.22s ease;
  transform-origin: center;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   PROJECTS EXPAND
========================= */

@keyframes tileReveal {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.project-tile--extra {
  display: none;
}

.projects-mosaic--expanded .project-tile--extra {
  display: block;
  animation: tileReveal 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.projects-mosaic--expanded .project-tile--extra:nth-child(6)  { animation-delay: 0s; }
.projects-mosaic--expanded .project-tile--extra:nth-child(7)  { animation-delay: 0.07s; }
.projects-mosaic--expanded .project-tile--extra:nth-child(8)  { animation-delay: 0.14s; }
.projects-mosaic--expanded .project-tile--extra:nth-child(9)  { animation-delay: 0.21s; }
.projects-mosaic--expanded .project-tile--extra:nth-child(10) { animation-delay: 0.28s; }

.projects-mosaic__expand .expand-arrow {
  display: inline-block;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.projects-mosaic__expand.is-active .expand-arrow {
  transform: rotate(180deg) translateY(1px);
}

/* =========================
   PROJECT TILE 10
========================= */

.project-tile--10 {
  grid-column: span 1;
  grid-row: span 14;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.02) 24%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(
      to bottom,
      #b4bcc3 0%,
      #8f98a0 36%,
      #5b6068 68%,
      #161616 100%
    );
}

/* =========================
   PROJECT TILES — REAL PHOTOS
========================= */

.project-tile--01 {
  background:
    linear-gradient(to bottom, rgba(10,10,10,0) 52%, rgba(10,10,10,0.88) 100%),
    url("img/p01.jpg") center center / cover no-repeat;
}

.project-tile--02 {
  background:
    linear-gradient(to bottom, rgba(10,10,10,0) 52%, rgba(10,10,10,0.88) 100%),
    url("img/p02.jpg") center center / cover no-repeat;
}

.project-tile--03 {
  background:
    linear-gradient(to bottom, rgba(10,10,10,0) 52%, rgba(10,10,10,0.88) 100%),
    url("img/p03.jpg") center center / cover no-repeat;
}

.project-tile--04 {
  background:
    linear-gradient(to bottom, rgba(10,10,10,0) 52%, rgba(10,10,10,0.88) 100%),
    url("img/p04.jpg") center center / cover no-repeat;
}

.project-tile--05 {
  background:
    linear-gradient(to bottom, rgba(10,10,10,0) 52%, rgba(10,10,10,0.88) 100%),
    url("img/p05.jpg") center center / cover no-repeat;
}

.project-tile--06 {
  background:
    linear-gradient(to bottom, rgba(10,10,10,0) 52%, rgba(10,10,10,0.88) 100%),
    url("img/p06.jpg") center center / cover no-repeat;
}

.project-tile--07 {
  background:
    linear-gradient(to bottom, rgba(10,10,10,0) 52%, rgba(10,10,10,0.88) 100%),
    url("img/p07.jpg") center center / cover no-repeat;
}

.project-tile--08 {
  background:
    linear-gradient(to bottom, rgba(10,10,10,0) 52%, rgba(10,10,10,0.88) 100%),
    url("img/p08.jpg") center center / cover no-repeat;
}

.project-tile--09 {
  background:
    linear-gradient(to bottom, rgba(10,10,10,0) 52%, rgba(10,10,10,0.88) 100%),
    url("img/p09.jpg") center center / cover no-repeat;
}

.project-tile--10 {
  background:
    linear-gradient(to bottom, rgba(10,10,10,0) 52%, rgba(10,10,10,0.88) 100%),
    url("img/p10.jpg") center center / cover no-repeat;
}