:root {
  --bg-page: #f3fbf7;
  --bg-dark: #121512;
  --surface-white: rgba(255, 255, 255, 0.94);
  --surface-panel: rgba(15, 18, 16, 0.44);
  --text-main: #171a18;
  --text-soft: #58615a;
  --text-light: #f7fbf8;
  --muted-light: rgba(247, 251, 248, 0.78);
  --line-soft: rgba(23, 26, 24, 0.08);
  --line-light: rgba(255, 255, 255, 0.14);
  --accent-coral: #ff6b3d;
  --accent-teal: #0fb7a0;
  --accent-gold: #ffbf3c;
  --accent-rose: #ff5c86;
  --shadow-soft: 0 20px 50px rgba(25, 27, 23, 0.12);
  --shadow-strong: 0 28px 70px rgba(15, 17, 14, 0.26);
  --cursor-x: 50vw;
  --cursor-y: 50vh;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text-main);
  background: linear-gradient(180deg, #f3fbf7 0%, #fffdf8 48%, #f7fcff 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

body.cursor-enhanced,
body.cursor-enhanced * {
  cursor: none !important;
}

.cursor-shell {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.cursor-shell.is-visible {
  opacity: 1;
}

.cursor-glow,
.cursor-ring,
.cursor-dot {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 999px;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform, width, height, opacity;
}

.cursor-glow {
  width: 52px;
  height: 52px;
  background:
    radial-gradient(circle, rgba(255, 191, 60, 0.34) 0%, rgba(255, 191, 60, 0.18) 26%, rgba(15, 183, 160, 0.18) 52%, rgba(15, 183, 160, 0) 76%);
  filter: blur(10px);
  opacity: 0.62;
  transition: width 0.28s ease, height 0.28s ease, opacity 0.28s ease;
}

.cursor-ring {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 0 1px rgba(255, 191, 60, 0.16),
    0 0 24px rgba(255, 191, 60, 0.16);
  mix-blend-mode: difference;
  transition:
    width 0.26s ease,
    height 0.26s ease,
    border-color 0.26s ease,
    background 0.26s ease,
    box-shadow 0.26s ease,
    opacity 0.26s ease;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 20px rgba(255, 191, 60, 0.46);
  mix-blend-mode: difference;
  transition: transform 0.18s ease, opacity 0.22s ease, background 0.22s ease;
}

.cursor-shell.is-hover .cursor-glow {
  width: 92px;
  height: 92px;
  opacity: 0.8;
}

.cursor-shell.is-hover .cursor-ring {
  width: 58px;
  height: 58px;
  border-color: rgba(255, 191, 60, 0.9);
  background: rgba(255, 191, 60, 0.08);
  box-shadow:
    0 0 0 1px rgba(15, 183, 160, 0.16),
    0 0 38px rgba(255, 191, 60, 0.24);
}

.cursor-shell.is-hover .cursor-dot {
  background: rgba(255, 191, 60, 1);
}

.cursor-shell.is-pressed .cursor-glow {
  width: 72px;
  height: 72px;
  opacity: 0.52;
}

.cursor-shell.is-pressed .cursor-ring {
  width: 40px;
  height: 40px;
}

.cursor-shell.is-pressed .cursor-dot {
  opacity: 0.7;
}

.cursor-shell.is-header-zone .cursor-glow {
  width: 40px;
  height: 40px;
  opacity: 0.26;
}

.cursor-shell.is-header-zone .cursor-ring,
.cursor-shell.is-menu-zone .cursor-ring {
  width: 22px;
  height: 22px;
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.02);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 14px rgba(255, 255, 255, 0.08);
  mix-blend-mode: normal;
}

.cursor-shell.is-header-zone .cursor-dot,
.cursor-shell.is-menu-zone .cursor-dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.16);
  mix-blend-mode: normal;
}

.cursor-shell.is-menu-zone .cursor-glow {
  opacity: 0.14;
  width: 28px;
  height: 28px;
}

img,
video {
  display: block;
  width: 100%;
}

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

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

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

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(18, 21, 18, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.site-header::after {
  display: none;
}

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

.brand {
  display: grid;
  gap: 3px;
}

.brand-name,
.hero h1,
.section-heading h2,
.process-copy h2,
.contact-copy h2,
.hero-panel-title,
.service-body h3,
.gallery-body h3,
.step-card h3,
.lang-trigger {
  font-family: "Space Grotesk", Arial, sans-serif;
}

.brand-name {
  color: var(--text-light);
  font-size: 1.08rem;
  font-weight: 700;
}

.brand-role {
  color: rgba(247, 251, 248, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--text-light);
  font-size: 0.97rem;
  font-weight: 600;
}

.site-nav a {
  opacity: 0.9;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  color: var(--accent-gold);
}

.lang-control {
  position: relative;
  z-index: 8;
  isolation: isolate;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.lang-trigger:hover,
.lang-trigger:focus-visible,
.lang-control.is-open .lang-trigger {
  transform: translateY(-1px);
  border-color: rgba(255, 191, 60, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

.lang-trigger:hover .lang-icon svg,
.lang-trigger:focus-visible .lang-icon svg,
.lang-control.is-open .lang-icon svg {
  transform: rotate(90deg);
}

.lang-icon {
  width: 18px;
  height: 18px;
}

.lang-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  transition: transform 0.35s ease;
}

.lang-current {
  font-size: 0.92rem;
  font-weight: 700;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  gap: 6px;
  min-width: 168px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(18, 21, 18, 0.94);
  box-shadow: var(--shadow-strong);
  z-index: 12;
}

.lang-menu[hidden] {
  display: none;
}

.lang-option {
  min-height: 40px;
  padding: 0 12px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--text-light);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-option:hover,
.lang-option:focus-visible,
.lang-option.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-gold);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 92svh;
  padding: 132px 0 54px;
  color: var(--text-light);
  background:
    linear-gradient(120deg, rgba(15, 18, 16, 0.38) 0%, rgba(15, 18, 16, 0.2) 100%),
    url("https://images.unsplash.com/photo-1516321310766-d5a205d7dcd3?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero.video-ready {
  background:
    linear-gradient(180deg, rgba(8, 10, 9, 0.22) 0%, rgba(8, 10, 9, 0.4) 100%),
    #0b100e;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(118deg, rgba(255, 107, 61, 0.18) 0%, rgba(255, 191, 60, 0.08) 26%, rgba(15, 183, 160, 0.12) 60%, rgba(15, 183, 160, 0.22) 100%),
    linear-gradient(180deg, rgba(10, 12, 11, 0.18) 0%, rgba(10, 12, 11, 0.5) 100%);
}

.hero.video-ready::before {
  background:
    linear-gradient(118deg, rgba(255, 107, 61, 0.08) 0%, rgba(255, 191, 60, 0.03) 24%, rgba(15, 183, 160, 0.06) 58%, rgba(15, 183, 160, 0.1) 100%),
    linear-gradient(180deg, rgba(9, 11, 10, 0.04) 0%, rgba(9, 11, 10, 0.24) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(10, 12, 11, 0.64) 0%, rgba(10, 12, 11, 0.22) 42%, rgba(10, 12, 11, 0.58) 100%);
}

.hero.video-ready::after {
  background: linear-gradient(90deg, rgba(9, 11, 10, 0.36) 0%, rgba(9, 11, 10, 0.08) 42%, rgba(9, 11, 10, 0.3) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
  transition: opacity 0.35s ease;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  filter: saturate(1.14) contrast(1.08) brightness(0.9);
}

.hero.video-ready .hero-media {
  opacity: 1;
}

.hero.video-ready .hero-video {
  filter: saturate(1.12) contrast(1.04) brightness(1);
}

.hero-tech-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 26%),
    linear-gradient(225deg, rgba(15, 183, 160, 0.14) 0%, rgba(15, 183, 160, 0) 34%),
    linear-gradient(180deg, rgba(10, 12, 11, 0.04) 0%, rgba(10, 12, 11, 0.18) 100%);
}

.hero-tech-overlay::before {
  content: "";
  position: absolute;
  inset: -12%;
  opacity: 0;
  background:
    radial-gradient(360px circle at var(--cursor-x) var(--cursor-y), rgba(255, 191, 60, 0.14) 0%, rgba(255, 191, 60, 0.08) 24%, rgba(255, 191, 60, 0) 60%),
    radial-gradient(320px circle at calc(var(--cursor-x) + 4%) calc(var(--cursor-y) - 8%), rgba(15, 183, 160, 0.14) 0%, rgba(15, 183, 160, 0) 62%);
  transition: opacity 0.3s ease;
}

body.cursor-enhanced .hero-tech-overlay::before {
  opacity: 1;
}

.hero-grid-lines {
  display: none;
}

.hero-rail {
  display: none;
}

.hero-rail::after {
  display: none;
}

.hero-rail-a {
  top: 19%;
  left: -8%;
  --rail-angle: 12deg;
  transform: rotate(var(--rail-angle));
}

.hero-rail-b {
  right: -12%;
  bottom: 19%;
  --rail-angle: -12deg;
  transform: rotate(var(--rail-angle));
  animation-duration: 13s;
  animation-direction: reverse;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.74fr);
  gap: 32px;
  align-items: end;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
}

.hero-copy {
  position: relative;
  max-width: 760px;
  transform: translate3d(calc(var(--hero-shift-x) * -0.18), calc(var(--hero-shift-y) * -0.14), 0);
  transition: transform 0.35s ease;
}

.hero-copy::after {
  display: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 700;
}

.eyebrow-dark {
  background: rgba(255, 107, 61, 0.1);
  color: var(--text-main);
}

.hero-sign {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  color: rgba(247, 251, 248, 0.92);
  font-size: 1rem;
  font-weight: 600;
}

.hero-sign-name {
  color: var(--accent-gold);
  font-weight: 700;
}

.hero-sign-divider {
  color: rgba(247, 251, 248, 0.36);
}

.hero h1 {
  max-width: 760px;
  padding-top: 16px;
  font-size: 4.3rem;
  line-height: 1;
  font-weight: 700;
}

.hero-lead {
  max-width: 650px;
  padding-top: 18px;
  color: var(--muted-light);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -120%;
  width: 58%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.34) 50%, transparent 100%);
  transform: skewX(-24deg);
  transition: transform 0.75s ease;
  pointer-events: none;
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(340%) skewX(-24deg);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-coral) 0%, #ff8458 100%);
  color: var(--text-light);
  box-shadow: 0 14px 36px rgba(255, 107, 61, 0.28);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 32px;
}

.highlight-item {
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.highlight-item:nth-child(1) {
  background: rgba(255, 107, 61, 0.14);
}

.highlight-item:nth-child(2) {
  background: rgba(15, 183, 160, 0.14);
}

.highlight-item:nth-child(3) {
  background: rgba(255, 191, 60, 0.14);
}

.highlight-item h2 {
  margin-bottom: 10px;
  font-size: 1.02rem;
  font-weight: 700;
}

.highlight-item p {
  color: rgba(247, 251, 248, 0.82);
  font-size: 0.95rem;
}

.highlight-item::after,
.hero-panel::after,
.step-card::after,
.contact-panel::after,
.contact-main-link::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 18%, rgba(255, 255, 255, 0) 48%);
  transition: opacity 0.32s ease;
}

.highlight-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 46px rgba(10, 12, 10, 0.22);
}

.highlight-item:hover::after,
.hero-panel:hover::after,
.step-card:hover::after,
.contact-panel:hover::after,
.contact-main-link:hover::after,
.contact-main-link:focus-visible::after {
  opacity: 1;
}

.hero-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--surface-panel);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.hero-panel:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 32px 86px rgba(15, 17, 14, 0.34);
}

.hero-panel-kicker {
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-panel-title {
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 700;
}

.hero-panel-list {
  display: grid;
  gap: 12px;
}

.hero-panel-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.hero-panel-dot {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-teal) 100%);
}

.hero-panel-row span:last-child {
  color: rgba(247, 251, 248, 0.86);
  font-size: 0.95rem;
}

.hero-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 6px;
}

.hero-stack span,
.contact-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 251, 248, 0.92);
  font-size: 0.92rem;
  font-weight: 600;
}

.services {
  position: relative;
  padding: 96px 0;
}

.services::before,
.process::before,
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(23, 26, 24, 0.03) 0 1px,
      transparent 1px 120px
    );
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 18%, #000 82%, rgba(0, 0, 0, 0) 100%);
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin-bottom: 32px;
}

.section-heading-light h2,
.section-heading-light p {
  color: var(--text-light);
}

.section-heading h2,
.process-copy h2,
.contact-copy h2 {
  font-size: 2.8rem;
  line-height: 1.08;
  font-weight: 700;
}

.section-heading p,
.process-lead,
.contact-copy p {
  color: var(--text-soft);
  font-size: 1.03rem;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface-white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.38s ease, border-color 0.38s ease;
}

.service-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.45s ease;
}

.service-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.service-type {
  width: fit-content;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 700;
}

.service-card:nth-child(4n + 1) .service-type {
  background: rgba(255, 107, 61, 0.12);
  color: var(--accent-coral);
}

.service-card:nth-child(4n + 2) .service-type {
  background: rgba(15, 183, 160, 0.12);
  color: var(--accent-teal);
}

.service-card:nth-child(4n + 3) .service-type {
  background: rgba(255, 191, 60, 0.16);
  color: #8d6500;
}

.service-card:nth-child(4n + 4) .service-type {
  background: rgba(255, 92, 134, 0.12);
  color: var(--accent-rose);
}

.service-body h3 {
  font-size: 1.42rem;
  line-height: 1.14;
  font-weight: 700;
}

.service-copy {
  color: var(--text-soft);
  font-size: 0.98rem;
}

.service-list {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  color: var(--text-main);
}

.service-list li {
  color: var(--text-soft);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-coral) 0%, var(--accent-gold) 45%, var(--accent-teal) 100%);
  opacity: 0;
  transform: scaleX(0.65);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 44%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(15, 183, 160, 0.2);
  box-shadow: 0 28px 62px rgba(25, 27, 23, 0.16);
}

.service-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

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

.gallery {
  position: relative;
  padding: 96px 0;
  color: var(--text-light);
  background: linear-gradient(145deg, #121713 0%, #17271f 52%, #111813 100%);
}

.gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0 1px,
      transparent 1px 110px
    ),
    linear-gradient(180deg, rgba(255, 191, 60, 0.06) 0%, rgba(15, 183, 160, 0.04) 100%);
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.38s ease, box-shadow 0.38s ease;
}

.gallery-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.75s ease, filter 0.4s ease;
}

.gallery-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.gallery-tag {
  width: fit-content;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-gold);
  font-size: 0.82rem;
  font-weight: 700;
}

.gallery-body h3 {
  font-size: 1.2rem;
  line-height: 1.16;
}

.gallery-body p {
  color: rgba(247, 251, 248, 0.76);
  font-size: 0.96rem;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 32%, rgba(15, 18, 16, 0.18) 100%);
  pointer-events: none;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 191, 60, 0.16) 0%, rgba(255, 191, 60, 0) 36%, rgba(15, 183, 160, 0.12) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.gallery-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 26px 56px rgba(6, 8, 7, 0.28);
}

.gallery-card:hover::before {
  opacity: 1;
}

.gallery-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.12);
}

.process {
  position: relative;
  padding: 96px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 28px;
  align-items: start;
}

.process-copy {
  display: grid;
  gap: 16px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 12px;
}

.step-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.step-number {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-teal);
  font-size: 0.92rem;
  font-weight: 800;
}

.step-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
}

.step-card p {
  padding-top: 8px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 183, 160, 0.18);
  box-shadow: 0 22px 44px rgba(25, 27, 23, 0.12);
}

.process-visual {
  position: relative;
}

.process-visual img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.7s ease, filter 0.45s ease;
}

.process-visual-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(10, 14, 12, 0.88);
  color: var(--text-light);
  box-shadow: 0 18px 44px rgba(5, 8, 6, 0.28);
  backdrop-filter: blur(16px);
}

.process-visual-badge::before {
  content: "";
  order: 2;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(247, 251, 248, 0.9);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.22);
  justify-self: center;
}

.process-visual-badge span {
  order: 1;
  color: rgba(247, 251, 248, 0.72);
  font-size: 0.96rem;
  font-weight: 700;
  white-space: nowrap;
}

.process-visual-badge strong {
  order: 3;
  justify-self: end;
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
}

.process-visual:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.contact {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(255, 107, 61, 0.06) 0%, rgba(15, 183, 160, 0.08) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 26px;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 16px;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.contact-tag {
  border-color: rgba(23, 26, 24, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-main);
}

.contact-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface-white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.38s ease, border-color 0.38s ease;
}

.contact-image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.75s ease, filter 0.45s ease;
}

.contact-panel-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.contact-panel-kicker {
  color: var(--accent-coral);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-main-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 62px;
  padding: 0 18px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(15, 183, 160, 0.06);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.contact-main-link span {
  color: var(--text-soft);
  font-size: 0.96rem;
  font-weight: 600;
}

.contact-main-link strong {
  color: var(--text-main);
  font-size: 1.04rem;
  font-weight: 700;
}

.contact-note {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.contact-panel:hover {
  transform: translateY(-10px);
  border-color: rgba(15, 183, 160, 0.18);
  box-shadow: 0 26px 58px rgba(25, 27, 23, 0.14);
}

.contact-panel:hover .contact-image {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.contact-main-link:hover,
.contact-main-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(15, 183, 160, 0.12);
  border-color: rgba(15, 183, 160, 0.22);
}

.site-footer {
  padding: 28px 0 34px;
  background: var(--bg-dark);
  color: rgba(247, 251, 248, 0.72);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.94rem;
}

.footer-divider {
  margin: 0 10px;
  color: rgba(247, 251, 248, 0.3);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal.is-visible.highlight-item:hover {
  transform: translate3d(0, -8px, 0) scale(1);
}

.reveal.is-visible.service-card:hover,
.reveal.is-visible.gallery-card:hover,
.reveal.is-visible.contact-panel:hover {
  transform: translate3d(0, -10px, 0) scale(1);
}

.reveal.is-visible.step-card:hover {
  transform: translate3d(0, -8px, 0) scale(1);
}

@keyframes railDrift {
  0% {
    transform: translateX(0) rotate(var(--rail-angle, 0deg));
  }

  50% {
    transform: translateX(26px) rotate(var(--rail-angle, 0deg));
  }

  100% {
    transform: translateX(0) rotate(var(--rail-angle, 0deg));
  }
}

@media (any-hover: none) and (any-pointer: coarse) {
  .cursor-shell {
    display: none;
  }
}

@media (max-width: 1100px) {
  .hero-layout,
  .process-grid,
  .contact-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 860px) {
  .header-inner {
    padding: 14px 0;
  }

  .header-inner,
  .header-tools,
  .footer-inner {
    flex-wrap: wrap;
  }

  .site-nav {
    justify-content: flex-start;
  }

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

  .hero-layout,
  .process-grid,
  .contact-grid,
  .service-grid,
  .gallery-grid,
  .steps-grid,
  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-copy::after {
    display: none;
  }

  .section-heading h2,
  .process-copy h2,
  .contact-copy h2 {
    font-size: 2.2rem;
  }

  .process-visual img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 620px) {
  .section-inner {
    width: min(1180px, calc(100% - 24px));
  }

  .site-nav {
    gap: 14px;
    font-size: 0.92rem;
  }

  .lang-trigger {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero {
    padding-top: 118px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-lead,
  .section-heading p,
  .process-lead,
  .contact-copy p {
    font-size: 0.98rem;
  }

  .button {
    width: 100%;
  }

  .contact-main-link,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-visual-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    gap: 12px;
    min-height: 52px;
    padding: 0 14px;
  }

  .process-visual-badge::before {
    width: 6px;
    height: 6px;
  }

  .process-visual-badge span {
    font-size: 0.82rem;
  }

  .process-visual-badge strong {
    font-size: 0.82rem;
  }
}
