:root {
  --ink: #090b10;
  --ink-soft: #11151c;
  --ink-lift: #171c24;
  --paper: #f3f1ec;
  --paper-bright: #fbfaf7;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(9, 11, 16, 0.14);
  --muted-dark: #a7adb7;
  --muted-light: #626872;
  --cyan: #18e5f1;
  --blue: #1677ff;
  --magenta: #f126bb;
  --yellow: #ffd21f;
  --orange: #ff733d;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shell: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--cyan);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-160%);
  transition: transform 0.25s ease;
}

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

.page-noise {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(24, 229, 241, 0.075), transparent 68%);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line-dark);
  background: rgba(9, 11, 16, 0.86);
  backdrop-filter: blur(20px);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 184px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav > a {
  position: relative;
  color: #d8dbe0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.site-nav > a:not(.nav-cta):hover {
  color: white;
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 13px 17px 13px 19px;
  color: var(--ink) !important;
  background: var(--paper);
}

.nav-cta span {
  font-size: 15px;
  transition: transform 0.25s var(--ease);
}

.nav-cta:hover span {
  transform: translate(3px, -3px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line-dark);
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: var(--paper);
  transition: transform 0.3s var(--ease);
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 168px 0 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 73% 44%, rgba(30, 58, 81, 0.22), transparent 36%),
    linear-gradient(160deg, #0c0f15 0%, #080a0e 66%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-orb {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
}

.hero-orb-cyan {
  top: 19%;
  right: 23%;
  background: var(--cyan);
}

.hero-orb-magenta {
  right: -10%;
  bottom: 12%;
  background: var(--magenta);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: clamp(30px, 6vw, 96px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: #aeb3bc;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span,
.eyebrow::before {
  flex: 0 0 auto;
  width: 24px;
  height: 1px;
  background: var(--cyan);
  content: "";
}

.eyebrow span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #646b76;
}

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

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 6.6vw, 108px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.accent-word {
  position: relative;
  display: inline-block;
  color: transparent;
  background: linear-gradient(100deg, var(--cyan), #50a9ff 46%, var(--magenta));
  background-clip: text;
  -webkit-background-clip: text;
}

.accent-word::after {
  position: absolute;
  right: 1%;
  bottom: -8px;
  width: 42%;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--magenta));
  content: "";
  transform: rotate(-2deg);
}

.hero-intro {
  max-width: 570px;
  margin: 34px 0 0;
  color: #a9afb9;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 205px;
  padding: 16px 17px 16px 20px;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.23);
}

.button-primary:hover {
  box-shadow: 0 22px 60px rgba(24, 229, 241, 0.13);
}

.button-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  font-size: 16px;
  transition: transform 0.3s var(--ease);
}

.button:hover .button-icon {
  transform: translate(2px, -2px) rotate(4deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #d7dbe0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.text-link:hover {
  color: white;
  border-color: var(--cyan);
}

.phone-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(24, 229, 241, 0.09);
}

.hero-tags {
  display: flex;
  gap: 28px;
  margin-top: 56px;
  color: #747b86;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero-tags span {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-tags span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #464c55;
  content: "";
}

.hero-stage {
  position: relative;
  min-height: 530px;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.stage-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 70%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(255, 255, 255, 0.018),
    0 0 0 80px rgba(255, 255, 255, 0.01);
  transform: translate(-50%, -50%) rotate(-15deg);
}

.building-panel {
  position: absolute;
  top: 7%;
  right: 4%;
  bottom: 8%;
  left: 7%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.055), transparent 24%),
    repeating-linear-gradient(90deg, #181d24 0, #181d24 4px, #141820 4px, #141820 9px);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.52);
  transform: rotateY(-7deg) rotateX(3deg);
  transition: transform 0.25s ease-out;
}

.building-panel::before {
  position: absolute;
  inset: 0;
  border: 12px solid rgba(255, 255, 255, 0.025);
  content: "";
  pointer-events: none;
}

.panel-topline,
.panel-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #79818e;
  font-family: "Courier New", monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sign-mockup {
  position: relative;
  z-index: 1;
  padding: 70px 20px 64px;
  text-align: center;
}

.sign-mockup::before {
  position: absolute;
  inset: 26% 10% 16%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.12), transparent 67%);
  content: "";
  filter: blur(22px);
}

.sign-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.42em;
}

.sign-mockup strong {
  position: relative;
  display: block;
  color: #f6f7f8;
  font-family: Arial, sans-serif;
  font-size: clamp(45px, 4.7vw, 73px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1;
  text-shadow:
    0 0 2px white,
    0 0 18px rgba(255, 255, 255, 0.34),
    0 7px 12px rgba(0, 0, 0, 0.8);
}

.sign-mockup strong span {
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--magenta));
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: none;
}

.sign-mockup small {
  position: relative;
  display: block;
  margin-top: 13px;
  color: #8c929c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.material-swatch {
  display: flex;
  gap: 4px;
}

.material-swatch i {
  display: block;
  width: 17px;
  height: 3px;
  background: var(--cyan);
}

.material-swatch i:nth-child(2) {
  background: var(--blue);
}

.material-swatch i:nth-child(3) {
  background: var(--magenta);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 178px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(17, 21, 28, 0.84);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}

.floating-card-one {
  top: 15%;
  left: -5%;
}

.floating-card-two {
  right: -6%;
  bottom: 18%;
  animation-delay: -2.5s;
}

.card-index {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--cyan);
  font-family: Georgia, serif;
  font-size: 13px;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  color: #e7e9ec;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.floating-card small {
  color: #737b86;
  font-size: 10px;
}

.pulse-mark {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--magenta);
}

.pulse-mark::after {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(241, 38, 187, 0.5);
  border-radius: 50%;
  content: "";
  animation: pulse 2s ease-out infinite;
}

@keyframes float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(0.5); }
  100% { opacity: 0; transform: scale(1.5); }
}

.hero-foot {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 25px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #636a74;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-foot p {
  margin: 0;
}

.hero-foot p:last-child span {
  margin: 0 7px;
  color: var(--cyan);
}

.scroll-line {
  position: relative;
  width: 120px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.scroll-line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 100%;
  background: var(--cyan);
  animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(340%); }
}

.marquee-band {
  position: relative;
  z-index: 2;
  padding: 22px 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--cyan);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  margin: 0 28px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marquee-track i {
  width: 5px;
  height: 5px;
  border: 1px solid var(--ink);
  transform: rotate(45deg);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  position: relative;
  padding: 128px 0;
}

.services,
.process,
.quote-section {
  color: var(--ink);
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 70px;
}

.section-heading h2,
.process h2,
.quote-copy h2 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading > p {
  max-width: 480px;
  margin: 0 0 4px;
  color: var(--muted-light);
  font-size: 16px;
}

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

.service-card {
  --card-hover-fill: var(--ink);
  --card-hover-text: var(--paper);
  --card-hover-muted: #aeb4be;
  position: relative;
  display: grid;
  min-height: 445px;
  padding: 29px;
  overflow: hidden;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  transition: color 0.4s ease, background 0.4s ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  background: var(--card-hover-fill);
  content: "";
  transform: translateY(101%);
  transition: transform 0.55s var(--ease);
}

.service-card:nth-child(1) {
  --card-hover-fill: var(--cyan);
  --card-hover-text: var(--ink);
  --card-hover-muted: #25343a;
}

.service-card:nth-child(2) {
  --card-hover-fill: var(--yellow);
  --card-hover-text: var(--ink);
  --card-hover-muted: #3f3613;
}

.service-card:nth-child(3) {
  --card-hover-fill: var(--magenta);
  --card-hover-text: var(--ink);
  --card-hover-muted: #40112f;
}

.service-card:hover {
  color: var(--card-hover-text);
}

.service-card:hover::before {
  transform: translateY(0);
}

.service-number,
.service-content,
.service-icon,
.service-visual {
  position: relative;
  z-index: 1;
}

.service-number {
  align-self: start;
  color: #868a90;
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  transition: color 0.4s ease;
}

.service-card:hover .service-number {
  color: currentColor;
}

.service-content {
  align-self: end;
}

.service-content h3 {
  margin: 0 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.service-content p {
  max-width: 510px;
  margin: 0 0 24px;
  color: var(--muted-light);
  transition: color 0.4s ease;
}

.service-card:hover .service-content p {
  color: var(--card-hover-muted);
}

.service-content a {
  display: inline-flex;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-content a span {
  transition: transform 0.25s ease;
}

.service-content a:hover span {
  transform: translate(3px, -3px);
}

.service-visual {
  position: absolute;
  top: 30px;
  right: 24px;
  width: 47%;
  height: 52%;
  opacity: 0.9;
}

.mini-building {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(9, 11, 16, 0.18);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.28), transparent),
    repeating-linear-gradient(90deg, #d4d2cc 0, #d4d2cc 5px, #c9c7c2 5px, #c9c7c2 11px);
  transform: skewY(-5deg);
  transition: border-color 0.4s ease, background 0.4s ease;
}

.service-card:hover .mini-building {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent),
    repeating-linear-gradient(90deg, #222831 0, #222831 5px, #1d222a 5px, #1d222a 11px);
}

.mini-sign {
  position: absolute;
  top: 42%;
  left: 18%;
  padding: 4px 10px;
  color: var(--paper);
  background: var(--ink);
  font-size: clamp(14px, 2vw, 28px);
  font-weight: 900;
  letter-spacing: -0.06em;
  transition: color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover .mini-sign {
  color: var(--ink);
  background: var(--cyan);
  box-shadow: 0 0 30px rgba(24, 229, 241, 0.25);
}

.mini-building i {
  position: absolute;
  right: 12%;
  bottom: 10%;
  width: 22%;
  height: 26%;
  border: 1px solid rgba(9, 11, 16, 0.18);
}

.mini-building i:last-child {
  right: 38%;
}

.service-icon {
  position: absolute;
  top: 66px;
  right: 64px;
  width: 118px;
  height: 118px;
}

.icon-layers i {
  position: absolute;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(9, 11, 16, 0.34);
  transform: rotate(45deg);
  transition: border-color 0.4s ease, transform 0.5s var(--ease);
}

.icon-layers i:nth-child(2) {
  top: 13px;
  left: 13px;
}

.icon-layers i:nth-child(3) {
  top: 26px;
  left: 26px;
  border-color: var(--magenta);
}

.service-card:hover .icon-layers i {
  border-color: rgba(255, 255, 255, 0.36);
  transform: rotate(135deg);
}

.service-card:hover .icon-layers i:nth-child(3) {
  border-color: var(--cyan);
}

.icon-motion i {
  position: absolute;
  top: 24px;
  right: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transition: background 0.4s ease, transform 0.5s var(--ease);
}

.icon-motion i:nth-child(2) {
  top: 57px;
  width: 76%;
}

.icon-motion i:nth-child(3) {
  top: 90px;
  width: 52%;
}

.service-card:hover .icon-motion i {
  background: var(--cyan);
  transform: translateX(-16px);
}

.service-card:hover .icon-motion i:nth-child(2) {
  transform: translateX(8px);
}

.service-card:hover .icon-motion i:nth-child(3) {
  transform: translateX(-25px);
}

.icon-wayfinding {
  display: grid;
  place-items: center;
  border: 1px solid rgba(9, 11, 16, 0.32);
  transition: border-color 0.4s ease, border-radius 0.5s var(--ease);
}

.icon-wayfinding span {
  font-family: Georgia, serif;
  font-size: 48px;
  transition: color 0.4s ease, transform 0.4s var(--ease);
}

.icon-wayfinding i {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--magenta);
  border-radius: 50%;
}

.service-card:hover .icon-wayfinding {
  border-color: var(--cyan);
  border-radius: 50%;
}

.service-card:hover .icon-wayfinding span {
  color: var(--cyan);
  transform: translateX(7px);
}

.capability-showcase {
  overflow: hidden;
  background: #0b0e13;
}

.capability-showcase::before {
  position: absolute;
  top: 5%;
  right: -12%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(241, 38, 187, 0.06);
  content: "";
  filter: blur(140px);
}

.showcase-intro {
  display: grid;
  grid-template-columns: 0.6fr 1.2fr 0.7fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 72px;
}

.showcase-intro .eyebrow {
  align-self: start;
}

.showcase-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 7vw, 102px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.showcase-intro > p:last-child {
  margin: 0 0 5px;
  color: #9198a3;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.project-tile {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--ink-soft);
}

.project-tile-wide {
  grid-column: 1 / -1;
}

.project-art {
  position: relative;
  height: 430px;
  overflow: hidden;
  background: #151a22;
}

.project-tile-wide .project-art {
  height: 540px;
}

.project-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 28%);
  content: "";
  pointer-events: none;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-top: 1px solid var(--line-dark);
}

.project-meta p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 20px;
}

.project-meta p span {
  margin-right: 12px;
  color: #68717d;
  font-family: "Courier New", monospace;
  font-size: 10px;
}

.project-meta > span {
  color: #747c87;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.art-storefront {
  background:
    radial-gradient(circle at 72% 34%, rgba(24, 229, 241, 0.08), transparent 25%),
    linear-gradient(155deg, #242a32, #0e1117 74%);
}

.storefront-frame {
  position: absolute;
  top: 14%;
  right: 8%;
  bottom: 0;
  left: 8%;
  border: 16px solid #2c323a;
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(38, 47, 58, 0.86) 49.5%, rgba(6, 9, 13, 0.9) 49.5% 50.5%, rgba(24, 29, 36, 0.88) 50.5%),
    linear-gradient(#19232b, #090c10);
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.48);
  transform: perspective(900px) rotateX(2deg);
  transition: transform 0.7s var(--ease);
}

.project-tile:hover .storefront-frame {
  transform: perspective(900px) rotateX(0) scale(1.025);
}

.awning {
  position: absolute;
  top: 24%;
  left: 7%;
  width: 34%;
  height: 5%;
  background: var(--cyan);
  box-shadow: 0 0 28px rgba(24, 229, 241, 0.32);
}

.storefront-frame strong {
  position: absolute;
  top: 37%;
  left: 7%;
  color: white;
  font-family: Arial, sans-serif;
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.75;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.18);
}

.storefront-door {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 25%;
  height: 74%;
  border: 7px solid #303944;
  border-bottom: 0;
  background: linear-gradient(140deg, rgba(69, 91, 108, 0.38), rgba(7, 10, 14, 0.68));
}

.art-interior {
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(255, 255, 255, 0.05) 49.7% 50.3%, transparent 50.3%),
    linear-gradient(#1b2029, #0e1117);
}

.interior-wall {
  position: absolute;
  top: 15%;
  right: 8%;
  bottom: 8%;
  left: 8%;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.08), transparent 40%),
    #181d24;
  box-shadow: 0 36px 60px rgba(0, 0, 0, 0.45);
}

.wall-mark {
  position: absolute;
  top: 18%;
  left: 13%;
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  border-radius: 30% 70% 55% 45% / 47% 43% 57% 53%;
  color: var(--ink);
  background: linear-gradient(145deg, var(--cyan), var(--blue) 48%, var(--magenta));
  font-family: Arial, sans-serif;
  font-size: 63px;
  font-weight: 900;
  transform: rotate(-7deg);
  transition: border-radius 0.7s var(--ease), transform 0.7s var(--ease);
}

.project-tile:hover .wall-mark {
  border-radius: 50%;
  transform: rotate(0) scale(1.05);
}

.wall-copy {
  position: absolute;
  right: 10%;
  bottom: 17%;
  width: 38%;
}

.wall-copy i {
  display: block;
  width: 100%;
  height: 7px;
  margin-top: 13px;
  background: #4e5661;
}

.wall-copy i:nth-child(2) {
  width: 78%;
  background: var(--cyan);
}

.wall-copy i:nth-child(3) {
  width: 48%;
}

.art-fleet {
  background:
    linear-gradient(170deg, transparent 59%, #10151c 59.3%),
    radial-gradient(circle at 50% 44%, rgba(241, 38, 187, 0.09), transparent 40%),
    #1b2028;
}

.van {
  position: absolute;
  top: 29%;
  right: 10%;
  left: 10%;
  height: 44%;
  border-radius: 35px 17px 9px 9px;
  background:
    linear-gradient(112deg, transparent 0 68%, rgba(16, 32, 43, 0.9) 68.5% 82%, transparent 82.5%),
    linear-gradient(100deg, #e6e9ea 0 57%, #c8ced1 57%);
  box-shadow: 0 32px 36px rgba(0, 0, 0, 0.42);
  transition: transform 0.7s var(--ease);
}

.project-tile:hover .van {
  transform: translateX(10px);
}

.van::before {
  position: absolute;
  inset: 0 35% 0 0;
  border-radius: 35px 0 0 9px;
  background:
    linear-gradient(135deg, transparent 35%, rgba(24, 229, 241, 0.9) 35% 45%, transparent 45%),
    linear-gradient(145deg, transparent 46%, rgba(22, 119, 255, 0.9) 46% 58%, transparent 58%),
    linear-gradient(155deg, transparent 58%, rgba(241, 38, 187, 0.9) 58% 70%, transparent 70%);
  content: "";
}

.van span {
  position: absolute;
  z-index: 1;
  top: 37%;
  left: 16%;
  color: var(--ink);
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.wheel {
  position: absolute;
  bottom: -23px;
  width: 49px;
  height: 49px;
  border: 10px solid #07090d;
  border-radius: 50%;
  background: #89929b;
}

.wheel-one {
  left: 16%;
}

.wheel-two {
  right: 15%;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 10vw, 160px);
}

.process-sticky {
  align-self: start;
  position: sticky;
  top: 140px;
}

.process-sticky > p:not(.eyebrow) {
  max-width: 430px;
  margin: 25px 0 27px;
  color: var(--muted-light);
}

.dark-link {
  color: var(--ink);
  border-color: rgba(9, 11, 16, 0.26);
}

.dark-link:hover {
  color: var(--ink);
  border-color: var(--magenta);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.process-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 25px;
  padding: 38px 0 42px;
  border-bottom: 1px solid var(--line-light);
}

.process-index {
  padding-top: 6px;
  color: #898e95;
  font-family: "Courier New", monospace;
  font-size: 10px;
}

.process-list h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.process-list p {
  max-width: 570px;
  margin: 0;
  color: var(--muted-light);
}

.about {
  overflow: hidden;
  background: #0b0e13;
}

.about-glow {
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(24, 229, 241, 0.07);
  filter: blur(150px);
}

.about-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.about-mark {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.about-mark::before,
.about-mark::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.about-mark::before {
  inset: 9%;
}

.about-mark::after {
  inset: 22%;
}

.about-mark span {
  position: relative;
  z-index: 1;
  color: transparent;
  background: linear-gradient(145deg, var(--cyan), var(--blue), var(--magenta));
  background-clip: text;
  -webkit-background-clip: text;
  font-family: Arial, sans-serif;
  font-size: clamp(120px, 16vw, 250px);
  font-weight: 900;
  letter-spacing: -0.13em;
  filter: drop-shadow(0 0 35px rgba(24, 229, 241, 0.14));
  transform: translateX(-4%);
}

.about-mark i {
  position: absolute;
  top: 14%;
  right: 17%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 18px rgba(241, 38, 187, 0.7);
}

.about-copy h2 {
  max-width: 770px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 5.7vw, 86px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.about-lead {
  max-width: 720px;
  margin: 28px 0 50px;
  color: #9da4ae;
  font-size: 18px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.about-points article {
  padding: 26px 22px 0 0;
}

.about-points article + article {
  padding-left: 22px;
  border-left: 1px solid var(--line-dark);
}

.about-points span {
  color: var(--cyan);
  font-family: "Courier New", monospace;
  font-size: 9px;
}

.about-points h3 {
  margin: 13px 0 9px;
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
}

.about-points p {
  margin: 0;
  color: #818995;
  font-size: 13px;
}

.quote-section {
  padding: 128px 0;
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(70px, 10vw, 160px);
}

.quote-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 28px 0 44px;
  color: var(--muted-light);
}

.contact-list {
  border-top: 1px solid var(--line-light);
}

.contact-list > * {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
}

.contact-list span {
  color: #888c92;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

.contact-list a strong {
  transition: color 0.25s ease;
}

.contact-list a:hover strong {
  color: #067c88;
}

.quote-form {
  padding: clamp(28px, 4vw, 48px);
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 35px 80px rgba(9, 11, 16, 0.18);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quote-form label {
  display: block;
  margin-bottom: 22px;
}

.quote-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #9da3ad;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  outline: none;
  background: transparent;
  font-size: 15px;
  transition: border-color 0.25s ease;
}

.quote-form select {
  color-scheme: dark;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #616874;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--cyan);
}

.button-dark {
  width: 100%;
  color: var(--ink);
  background: var(--cyan);
}

.form-note {
  margin: 14px 0 0;
  color: #6f7783;
  font-size: 11px;
  text-align: center;
}

.site-footer {
  padding: 72px 0 28px;
  border-top: 1px solid var(--line-dark);
  background: #07090c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  min-height: 170px;
}

.footer-brand img {
  width: 205px;
}

.footer-main > p {
  margin: 0;
  color: #9299a4;
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1.35;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 82px;
  padding: 11px 12px;
  border: 1px solid var(--line-dark);
  color: #b4bac3;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.footer-social a:hover {
  color: var(--ink);
  border-color: var(--cyan);
  background: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 23px;
  border-top: 1px solid var(--line-dark);
  color: #5f6670;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p span {
  margin: 0 7px;
  color: var(--cyan);
}

.footer-bottom a {
  transition: color 0.25s ease;
}

.footer-bottom a:hover {
  color: var(--cyan);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 40px, 960px);
  }

  .site-nav {
    gap: 23px;
  }

  .hero-layout {
    grid-template-columns: 1fr 0.88fr;
    gap: 30px;
  }

  .hero-stage {
    min-height: 470px;
  }

  .floating-card-one {
    left: 0;
  }

  .floating-card-two {
    right: -2%;
  }

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

  .about-points article {
    padding: 18px 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .about-points article + article {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 34px, 720px);
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .menu-open .menu-toggle span:not(.sr-only):nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:not(.sr-only):nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding: 110px max(28px, calc((100vw - 720px) / 2));
    visibility: hidden;
    opacity: 0;
    background: rgba(9, 11, 16, 0.98);
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.4s var(--ease), visibility 0.3s;
  }

  .menu-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a {
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .nav-cta {
    margin-top: 14px;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
  }

  .hero {
    padding-top: 142px;
  }

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

  .hero-copy {
    position: relative;
    z-index: 3;
  }

  .hero-stage {
    min-height: 520px;
    margin-top: 30px;
  }

  .hero-foot {
    position: relative;
    bottom: auto;
    margin-top: 30px;
  }

  .section {
    padding: 96px 0;
  }

  .section-heading,
  .showcase-intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

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

  .project-tile-wide {
    grid-column: auto;
  }

  .project-tile-wide .project-art,
  .project-art {
    height: 430px;
  }

  .process-layout,
  .about-layout,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .process-sticky {
    position: relative;
    top: auto;
  }

  .about-mark {
    max-width: 440px;
    width: 100%;
    margin-inline: auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .footer-social {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand img {
    width: 158px;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
  }

  .hero h1 {
    font-size: clamp(52px, 16.8vw, 76px);
    line-height: 0.91;
  }

  .hero-copy .eyebrow {
    gap: 8px;
    white-space: nowrap;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .hero-copy .eyebrow::before {
    width: 20px;
  }

  .hero-copy .eyebrow span {
    display: none;
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .button-primary {
    width: 100%;
  }

  .hero-tags {
    gap: 12px;
    justify-content: space-between;
  }

  .hero-tags span {
    gap: 12px;
  }

  .hero-stage {
    min-height: 410px;
  }

  .building-panel {
    inset: 5% 0 8%;
    padding: 18px;
  }

  .sign-mockup {
    padding-inline: 0;
  }

  .floating-card {
    min-width: 150px;
    padding: 11px 12px;
  }

  .floating-card-one {
    top: 6%;
    left: -2%;
  }

  .floating-card-two {
    right: -2%;
    bottom: 5%;
  }

  .hero-foot p:first-child,
  .scroll-line {
    display: none;
  }

  .hero-foot {
    justify-content: flex-end;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .section-heading h2,
  .process h2,
  .quote-copy h2 {
    font-size: 48px;
  }

  .service-card {
    min-height: 435px;
    padding: 22px;
  }

  .service-icon {
    top: 58px;
    right: 36px;
    width: 94px;
    height: 94px;
  }

  .icon-layers i {
    width: 58px;
    height: 58px;
  }

  .service-visual {
    top: 48px;
    right: 15px;
    width: 58%;
    height: 42%;
  }

  .project-tile-wide .project-art,
  .project-art {
    height: 330px;
  }

  .project-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .storefront-frame {
    right: 4%;
    left: 4%;
    border-width: 10px;
  }

  .storefront-frame strong {
    top: 42%;
  }

  .wall-mark {
    width: 90px;
    height: 90px;
    font-size: 46px;
  }

  .van {
    right: 5%;
    left: 5%;
  }

  .process-list li {
    grid-template-columns: 40px 1fr;
  }

  .about-copy h2 {
    font-size: 50px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quote-form {
    padding: 26px 20px;
  }

  .contact-list > * {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .contact-list strong {
    text-align: left;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-social {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (pointer: fine) {
  body:hover .cursor-glow {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Generated campaign photography */
.hero-stage {
  min-height: 560px;
}

.hero-photo-frame {
  position: absolute;
  inset: 3% 0 6% 4%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: #11151c;
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.52);
  transform-style: preserve-3d;
  transition: transform 0.25s ease-out, border-color 0.4s ease;
}

.hero-photo-frame::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 10px solid rgba(255, 255, 255, 0.025);
  content: "";
  pointer-events: none;
}

.hero-photo-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  transition: transform 1.1s var(--ease), filter 0.6s ease;
}

.hero-stage:hover .hero-photo-frame > img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.hero-photo-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 46%, rgba(5, 7, 10, 0.84) 100%),
    linear-gradient(90deg, rgba(4, 6, 9, 0.22), transparent 45%);
  pointer-events: none;
}

.hero-brand-plate {
  position: absolute;
  z-index: 3;
  right: auto;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  width: min(290px, calc(100% - 48px));
  padding: 17px 19px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 9, 12, 0.76);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.hero-brand-plate img {
  width: 182px;
  height: auto;
}

.floating-card {
  z-index: 5;
}

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

.service-image {
  position: relative;
  z-index: 1;
  height: 230px;
  margin: 19px 0 30px;
  overflow: hidden;
  border: 1px solid rgba(9, 11, 16, 0.15);
  background: #d9d7d2;
}

.service-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 35%);
  content: "";
  pointer-events: none;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease), filter 0.45s ease;
}

.service-card:hover .service-image {
  border-color: rgba(255, 255, 255, 0.16);
}

.service-card:hover .service-image img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.055);
}

.project-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.5s ease;
}

.project-tile-wide .project-art img {
  object-position: center 48%;
}

.project-tile:hover .project-art img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.project-art::after {
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 56%, rgba(5, 7, 10, 0.52) 100%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 28%);
}

.project-badge {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #eef0f2;
  background: rgba(7, 9, 12, 0.7);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.about-photo {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--ink-soft);
}

.about-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 7, 10, 0.78) 100%);
  content: "";
  pointer-events: none;
}

.about-photo > img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: 54% center;
  transition: transform 1s var(--ease);
}

.about-photo:hover > img {
  transform: scale(1.035);
}

.about-photo-label {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 21px;
  left: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.about-photo-label span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
}

.about-photo-label small {
  color: #a8afb8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .hero-photo-frame {
    inset: 0;
  }

  .about-photo,
  .about-photo > img {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .hero-stage {
    min-height: 430px;
  }

  .hero-photo-frame > img {
    object-position: 58% center;
  }

  .hero-brand-plate {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 14px;
  }

  .hero-brand-plate img {
    width: 158px;
  }

  .floating-card-one {
    top: 4%;
  }

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

  .service-image {
    height: 205px;
    margin-bottom: 24px;
  }

  .about-photo,
  .about-photo > img {
    min-height: 430px;
  }

  .about-photo-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}
