@font-face {
  font-family: "Moderniz";
  src: url("assets/fonts/Moderniz.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --text: #f4f4f4;
  --muted: #b7b7b7;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.19, 1, 0.22, 1);
  --duration-fast: 280ms;
  --duration-medium: 520ms;
  --duration-slow: 760ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #0b0b0b 0%, var(--bg) 100%);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

body.motion-ready [data-reveal] {
  --reveal-y: 30px;
  opacity: 0;
  transform: translate3d(0, var(--reveal-y), 0);
  transition:
    opacity var(--duration-medium) ease,
    transform var(--duration-slow) var(--ease-smooth);
  will-change: transform, opacity;
}

body.motion-ready [data-reveal].is-visible {
  --reveal-y: 0px;
  opacity: 1;
  will-change: auto;
}

body.motion-ready [data-stagger] > * {
  --stagger-y: 24px;
  --item-hover-y: 0px;
  opacity: 0;
  transform: translate3d(0, calc(var(--stagger-y) + var(--item-hover-y)), 0);
  transition:
    opacity var(--duration-medium) ease,
    transform var(--duration-slow) var(--ease-smooth);
}

body.motion-ready [data-stagger].is-visible > * {
  --stagger-y: 0px;
  opacity: 1;
}

body.motion-ready [data-stagger].is-visible > :nth-child(1) {
  transition-delay: 60ms;
}

body.motion-ready [data-stagger].is-visible > :nth-child(2) {
  transition-delay: 140ms;
}

body.motion-ready [data-stagger].is-visible > :nth-child(3) {
  transition-delay: 220ms;
}

body.motion-ready [data-stagger].is-visible > :nth-child(4) {
  transition-delay: 300ms;
}

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

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

ul {
  padding-left: 1.2rem;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

.page-shell {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 2.5rem;
}

.topbar,
.footer,
.grid-section,
.hero {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 1rem 1rem 0 0.85rem;
  transition: padding var(--duration-medium) ease, transform var(--duration-medium) ease, opacity var(--duration-medium) ease;
  animation: fade-up 1s var(--ease-soft) both;
}

body.is-scrolled .topbar {
  padding-top: 1rem;
  padding-right: 1.4rem;
  padding-left: 0.85rem;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: transparent;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--duration-medium) ease, transform var(--duration-medium) ease;
}

body.is-scrolled .topbar::before {
  opacity: 1;
  transform: translateY(0);
}

.topbar>* {
  position: relative;
  z-index: 1;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.topbar-spacer {
  display: none;
}

.brand-mark,
.eyebrow,
.section-label,
.card-label,
.contact-link,
.footer,
.button,
.inline-link {
  font-family: "IBM Plex Mono", "Courier New", monospace;
}

.eyebrow,
.contact-link,
.section-label,
.card-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: min(180px, 34vw);
  max-width: 180px;
  flex: 0 0 auto;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.brand-mark-centered img {
  mix-blend-mode: screen;
  filter: brightness(0) invert(1) drop-shadow(0 0 18px rgba(0, 0, 0, 0.32));
}

.brand-mark-centered {
  justify-content: center;
  margin-inline: 0;
}

.topbar .brand-mark {
  order: 1;
}

.topbar .menu-trigger {
  order: 2;
  margin-left: 0;
}

.home-page .topbar .brand-mark-centered {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px) scale(0.88);
  transition: opacity var(--duration-medium) ease, transform var(--duration-slow) var(--ease-smooth);
}

.home-page.is-scrolled .topbar .brand-mark-centered {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  margin-inline: 0;
  justify-content: flex-end;
}

.home-page.is-scrolled .topbar .topbar-spacer {
  display: none;
}

body.is-scrolled .topbar .brand-mark {
  width: min(132px, 24vw);
  max-width: 132px;
}

.contact-link,
.inline-link {
  transition: opacity var(--duration-fast) ease, transform var(--duration-medium) var(--ease-soft);
}

.menu-trigger {
  position: relative;
  width: 24px;
  height: 18px;
  padding: 0;
  margin-left: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-block;
  transition: opacity var(--duration-medium) ease, transform var(--duration-slow) var(--ease-smooth);
}

.hamburger-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: top var(--duration-medium) var(--ease-smooth), transform var(--duration-medium) var(--ease-smooth), opacity var(--duration-medium) ease;
}

.hamburger-line:nth-child(1) {
  top: 0;
}

.hamburger-line:nth-child(2) {
  top: 8px;
}

.hamburger-line:nth-child(3) {
  top: 16px;
}

.side-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
}

.side-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.46);
  opacity: 0;
  transition: opacity var(--duration-medium) ease;
}

.side-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  align-content: space-between;
  justify-items: end;
  width: min(380px, 100%);
  min-height: 100%;
  padding: 1.5rem 1.35rem;
  background: rgba(9, 9, 9, 0.96);
  backdrop-filter: blur(12px);
  transform: translateX(100%);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.24);
  transition: transform var(--duration-slow) var(--ease-smooth), box-shadow var(--duration-slow) var(--ease-smooth);
  overflow-y: auto;
}

.side-menu-head {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 32px;
  min-height: 32px;
}

.side-menu-nav a,
.side-menu-note {
  opacity: 0;
  transform: translate3d(26px, 0, 0);
  transition:
    opacity var(--duration-medium) ease,
    transform var(--duration-slow) var(--ease-smooth);
}

.side-menu-nav {
  display: grid;
  gap: 0.55rem;
  width: 100%;
  margin-top: 4.5rem;
  justify-items: end;
  text-align: right;
}

.side-menu-nav a {
  width: fit-content;
  font-family: "Moderniz", serif;
  font-size: clamp(1.6rem, 4.2vw, 2.7rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.menu-trigger-close {
  position: relative;
  z-index: 2;
  width: 26px;
  height: 18px;
}

.side-menu-nav a:hover {
  opacity: 0.78;
  transform: translate3d(-6px, 0, 0);
}

.side-menu-socials {
  align-self: end;
  justify-content: flex-end;
  width: 100%;
  padding-top: 2rem;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .side-menu {
  pointer-events: auto;
}

body.menu-open .side-menu-backdrop {
  opacity: 1;
}

body.menu-open .side-menu-panel {
  transform: translateX(0);
}

body.menu-open .side-menu-nav a {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.menu-open .side-menu-nav a:nth-child(1) {
  transition-delay: 180ms;
}

body.menu-open .side-menu-nav a:nth-child(2) {
  transition-delay: 240ms;
}

body.menu-open .side-menu-nav a:nth-child(3) {
  transition-delay: 300ms;
}

body.menu-open .side-menu .menu-trigger-close .hamburger-line:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

body.menu-open .side-menu .menu-trigger-close .hamburger-line:nth-child(2) {
  opacity: 0;
}

body.menu-open .side-menu .menu-trigger-close .hamburger-line:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

body.menu-open .topbar .menu-trigger .hamburger-line:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

body.menu-open .topbar .menu-trigger .hamburger-line:nth-child(2) {
  opacity: 0;
}

body.menu-open .topbar .menu-trigger .hamburger-line:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

body.menu-open .topbar .menu-trigger {
  opacity: 0;
  pointer-events: none;
}

.contact-button {
  padding: 0.78rem 1rem;
  border: 1px solid var(--line-strong);
  background: var(--text);
  color: var(--bg);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-link,
.footer-nav-link {
  padding: 0.78rem 0.95rem;
  border: 1px solid var(--line);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-link-active,
.footer-nav-link:hover,
.nav-link:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.footer-link {
  color: var(--text);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.08rem;
}

.contact-link:hover,
.inline-link:hover,
.button:hover {
  opacity: 0.72;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0b0b0b;
  animation: fade-up 1.2s var(--ease-soft) both;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.18)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.015), transparent 58%);
}

.hero-content {
  position: absolute;
  left: clamp(1.2rem, 4vw, 3.2rem);
  bottom: clamp(1.4rem, 5vw, 3.4rem);
  z-index: 2;
  display: grid;
  gap: 1rem;
  justify-items: start;
  max-width: min(520px, 55vw);
}

.hero-cta {
  position: absolute;
  right: clamp(1.2rem, 4vw, 3.2rem);
  bottom: clamp(1.4rem, 5vw, 3.4rem);
  z-index: 2;
  min-width: 164px;
  padding-inline: 1.4rem;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(10, 10, 10, 0.28);
  backdrop-filter: blur(10px);
  color: #ffffff;
  transform: translate3d(0, 0, 0);
}

.hero-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translate3d(0, -4px, 0);
}

.hero-brand {
  display: inline-flex;
  width: min(240px, 26vw);
  transition: opacity var(--duration-medium) ease, transform var(--duration-slow) var(--ease-smooth);
}

.hero-brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 18px rgba(0, 0, 0, 0.32));
  mix-blend-mode: screen;
}

.hero-statement {
  margin: 0;
  color: var(--text);
  font-family: "Moderniz", serif;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.home-page.is-scrolled .hero-brand {
  opacity: 0;
  transform: translateY(-42px) scale(0.82);
  pointer-events: none;
}

.about-section {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 2rem 1.2rem 2.4rem;
  scroll-margin-top: 7rem;
}

.about-background,
.about-overlay {
  position: absolute;
  inset: 0;
}

.about-background {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.22), rgba(8, 8, 8, 0.52)),
    url("assets/media/bg2.jpg") center / cover no-repeat;
}

.about-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.32), rgba(5, 5, 5, 0.58));
}

.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: center;
  min-height: 520px;
  padding-inline: clamp(1.8rem, 5vw, 5.2rem);
}

.about-title-wrap {
  display: grid;
  align-items: center;
  justify-items: start;
  min-height: 100%;
  padding: 1.5rem 0 1.5rem clamp(0.8rem, 2vw, 2rem);
}

.about-title-wrap h2 {
  margin: 0;
  color: var(--text);
  font-family: "Moderniz", serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.about-copy {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 0;
  background: transparent;
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.about-copy p {
  margin: 0;
  color: rgba(244, 244, 244, 0.86);
  max-width: 52ch;
  font-size: clamp(1rem, 1.18vw, 1.14rem);
  line-height: 1.78;
  text-wrap: balance;
}

.services-section {
  position: relative;
  overflow: hidden;
  padding: 2.2rem 1.2rem 2.6rem;
  min-height: 720px;
}

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

.services-media {
  z-index: 0;
}

.services-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.5), rgba(7, 7, 7, 0.72)),
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.08), transparent 38%);
}

.services-shell {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.8rem;
  min-height: 100%;
  padding: 0 clamp(1.4rem, 4vw, 3.2rem);
}

.services-title {
  margin: 0;
  color: #ffffff;
  font-family: "Moderniz", serif;
  font-size: clamp(2.15rem, 5vw, 4.35rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 1.7rem;
  min-height: 520px;
  padding: 0 1.8rem 1.2rem;
  color: #ffffff;
  transition:
    transform var(--duration-slow) var(--ease-smooth),
    background-color var(--duration-medium) ease,
    border-color var(--duration-medium) ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 5.2rem;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.42);
}

.service-card:hover {
  --item-hover-y: -8px;
}

.service-card h3 {
  margin: 2.8rem 0 0;
  color: #ffffff;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  font-weight: 500;
  line-height: 0.98;
}

.service-card p:last-of-type {
  max-width: 24ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.62;
}

.button-service {
  width: fit-content;
  justify-self: start;
  margin-top: auto;
  min-height: 44px;
  padding: 0.72rem 1.05rem;
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: #ffffff;
}

.button-service:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  max-width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: opacity var(--duration-fast) ease, background-color var(--duration-medium) ease, color var(--duration-medium) ease, transform var(--duration-medium) var(--ease-soft);
}

.button-primary {
  background: var(--text);
  color: var(--bg);
}

.button-secondary {
  background: transparent;
}

.panel {
  backdrop-filter: blur(10px);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  padding: 1.2rem 1.2rem 3rem;
  align-items: start;
  overflow: hidden;
  min-height: 760px;
}

.contact-background,
.contact-overlay {
  position: absolute;
  inset: 0;
}

.contact-background {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.18)),
    url("assets/media/bg1.jpg") center / cover no-repeat;
}

.contact-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.34));
}

.contact-intro {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.6rem;
  justify-items: center;
  padding-top: 1.8rem;
  text-align: center;
}

.contact-intro h2 {
  font-family: "Moderniz", serif;
  font-size: clamp(3rem, 7.1vw, 6.1rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: #ffffff;
  mix-blend-mode: screen;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
}

.contact-form {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 0 0 1.2rem;
}

.form-field {
  display: grid;
  gap: 0.5rem;
  text-align: left;
}

.form-field span {
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
  mix-blend-mode: screen;
}

.form-field-full,
.form-footer {
  grid-column: 1 / -1;
}

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

.form-field input,
.form-field textarea {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: var(--text);
  padding: 1rem 1.2rem;
  font: inherit;
  resize: vertical;
  outline: none;
  transition: background-color var(--duration-fast) ease, transform var(--duration-fast) ease;
}

.form-field textarea {
  min-height: 210px;
  border-radius: 28px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(244, 244, 244, 0.68);
}

.form-field input:focus,
.form-field textarea:focus {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.4rem;
}

.contact-form[data-status="submitting"] .button-primary {
  opacity: 0.7;
  cursor: wait;
}

.turnstile-wrap {
  min-height: 65px;
}

.turnstile-widget {
  overflow: hidden;
}

.turnstile-note {
  display: none;
}

.form-feedback {
  grid-column: 1 / -1;
  min-height: 1.5rem;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: #fff;
  mix-blend-mode: screen;
}

.form-feedback[data-state="success"] {
  color: #d9f7df;
}

.form-feedback[data-state="error"] {
  color: #ffd2d2;
}

.panel {
  display: grid;
  gap: 0.75rem;
  min-height: 100%;
  padding: 1.1rem 1.15rem;
  justify-items: start;
  align-content: start;
  animation: fade-up 1.3s var(--ease-soft) both;
  transition: transform var(--duration-medium) var(--ease-soft), border-color var(--duration-fast) ease, background-color var(--duration-fast) ease;
}

.panel:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.panel-wide h2 {
  font-family: "Moderniz", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.panel-statement {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.028));
}

.panel p,
.panel li {
  color: var(--muted);
  line-height: 1.55;
}

.panel ul {
  text-align: left;
  display: grid;
  gap: 0.45rem;
  margin: 0;
}

.inline-link {
  width: fit-content;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid var(--line-strong);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer {
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) minmax(160px, 0.5fr) minmax(190px, 0.6fr) minmax(230px, 0.8fr);
  column-gap: 3.2rem;
  row-gap: 1.4rem;
  padding-block: 3.2rem 1.2rem;
  padding-inline: 2.2rem;
  margin-top: -1.2rem;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.96), rgba(5, 5, 5, 0.98));
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  text-align: left;
}

.footer-brand-block {
  display: grid;
  gap: 1.4rem;
  align-content: start;
}

.footer-statement {
  margin: 0;
  color: var(--text);
  font-family: "Moderniz", serif;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--text);
  transition: transform var(--duration-medium) var(--ease-soft), border-color var(--duration-fast) ease, background-color var(--duration-fast) ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.footer-columns {
  display: contents;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  justify-items: start;
}

.footer-column:nth-child(1) {
  justify-self: end;
  justify-items: end;
  text-align: right;
}

.footer-column:nth-child(2) {
  justify-self: end;
  justify-items: end;
  text-align: right;
}

.footer-column:nth-child(3) {
  justify-self: end;
  justify-items: end;
  text-align: right;
}

.footer-heading {
  margin: 0;
  color: rgba(244, 244, 244, 0.6);
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-list-link,
.footer-list-copy {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.35;
}

.footer-list-copy {
  color: var(--muted);
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1rem;
  color: rgba(244, 244, 244, 0.84);
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: none;
}

.page-shell-artists {
  padding-bottom: 3rem;
}

.artists-hero {
  display: grid;
  gap: 1rem;
  justify-items: center;
  padding: 4.3rem 0 2rem;
  text-align: center;
}

.artists-hero-simple {
  padding-bottom: 1.2rem;
}

.artists-hero h1 {
  width: min(100%, 12.5ch);
  margin: 0;
  font-family: "Moderniz", serif;
  font-size: clamp(2.4rem, 5.2vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 0.5rem 0 2.5rem;
}

.artists-grid-gallery {
  padding-top: 0.2rem;
}

.artists-notice {
  display: grid;
  justify-items: center;
  padding: 0.2rem 0 2.5rem;
}

.artists-notice-card {
  display: grid;
  gap: 1rem;
  width: min(100%, 760px);
  padding: 1.6rem;
  justify-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.artists-notice-card h2 {
  margin: 0;
  font-family: "Moderniz", serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.artists-notice-card p:last-of-type {
  max-width: 44ch;
  color: var(--muted);
  line-height: 1.65;
}

.artist-card {
  grid-column: span 4;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  min-height: 250px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  transition: transform var(--duration-medium) var(--ease-soft), border-color var(--duration-fast) ease, background-color var(--duration-fast) ease;
  animation: fade-up 1s ease both;
}

.artist-card-portrait {
  gap: 0.9rem;
  min-height: auto;
  padding: 0.9rem;
}

.artist-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.artist-card-featured {
  grid-column: span 8;
  min-height: 280px;
}

.artist-card h2 {
  margin: 0;
  font-family: "Moderniz", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.artist-meta {
  color: var(--muted);
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artist-card p {
  color: var(--muted);
  line-height: 1.6;
}

.artist-image {
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: 999px 999px 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.artist-image-one {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)), radial-gradient(circle at 30% 20%, #8a8a8a, transparent 30%), linear-gradient(135deg, #242424, #101010 60%, #2e2e2e);
}

.artist-image-two {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)), radial-gradient(circle at 70% 20%, #9f9f9f, transparent 24%), linear-gradient(135deg, #1d1d1d, #0a0a0a 55%, #353535);
}

.artist-image-three {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.03)), radial-gradient(circle at 40% 25%, #7d7d7d, transparent 28%), linear-gradient(135deg, #2c2c2c, #0d0d0d 58%, #4a4a4a);
}

.artist-image-four {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)), radial-gradient(circle at 62% 18%, #a6a6a6, transparent 24%), linear-gradient(135deg, #202020, #080808 52%, #3a3a3a);
}

.artist-image-five {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015)), radial-gradient(circle at 34% 24%, #8f8f8f, transparent 26%), linear-gradient(135deg, #292929, #101010 55%, #424242);
}

.artist-image-six {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015)), radial-gradient(circle at 66% 22%, #909090, transparent 24%), linear-gradient(135deg, #252525, #0c0c0c 55%, #464646);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {

  .contact-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .contact-section {
    min-height: auto;
    padding-inline: 0.8rem;
  }

  .about-section {
    min-height: auto;
    padding-inline: 0.8rem;
    scroll-margin-top: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .services-section {
    min-height: auto;
    padding-inline: 0.8rem;
  }

  .services-shell {
    padding-inline: 0.8rem;
  }

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

  .service-card {
    min-height: auto;
    padding: 0 0 1.2rem 1.2rem;
  }

  .service-card h3 {
    margin-top: 1rem;
  }

  .service-card::before {
    bottom: 4.2rem;
  }

  .about-title-wrap {
    justify-items: center;
    min-height: auto;
    text-align: center;
  }

  .about-copy {
    width: 100%;
    margin-left: 0;
    justify-items: center;
    text-align: center;
  }

  .topbar {
    position: relative;
    padding-top: 0;
  }

  .hero {
    min-height: 68vh;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
    padding-inline: 1.2rem;
  }

  .footer-brand-block,
  .footer-column,
  .footer-socials,
  .footer-copy {
    justify-content: center;
  }

  .footer-column:nth-child(1),
  .footer-column:nth-child(2) {
    justify-self: center;
  }

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

  .artist-card,
  .artist-card-featured {
    grid-column: auto;
    min-height: auto;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: 100%;
    padding-top: 0;
  }

  .topbar {
    flex-direction: row;
    align-items: center;
    text-align: left;
    position: fixed;
    left: 0.05rem;
    right: 0.05rem;
    padding-top: 0.5rem;
    padding-left: 0.6rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .topbar-spacer {
    display: none;
  }

  .menu-trigger {
    align-self: center;
  }

  .side-menu-panel {
    width: 100%;
    padding: 1rem 1rem 1.35rem;
  }

  .side-menu-nav {
    gap: 0.3rem;
    margin-top: 4.25rem;
  }

  .side-menu-nav a {
    width: auto;
    max-width: 100%;
    font-size: clamp(1.3rem, 7vw, 2rem);
  }

  .brand-mark {
    width: min(160px, 52vw);
    max-width: 160px;
  }

  .artists-hero h1 {
    width: min(100%, 10.4ch);
    font-size: clamp(2.2rem, 12vw, 4rem);
  }

  .hero-content {
    left: 1rem;
    right: 1rem;
    bottom: 1.25rem;
    max-width: none;
  }

  .hero-cta {
    right: 1rem;
    bottom: 1.25rem;
    min-width: 0;
    width: auto;
  }

  .contact-intro {
    padding-top: 1.25rem;
  }

  .hero-brand {
    width: min(190px, 48vw);
  }

  .hero-statement {
    font-size: clamp(2.4rem, 12vw, 4.2rem);
  }

  .about-title-wrap h2 {
    font-size: clamp(2.5rem, 12vw, 4.3rem);
  }

  .services-title {
    font-size: clamp(2.1rem, 10vw, 3.7rem);
  }

  .service-card h3 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .service-card p:last-of-type {
    max-width: none;
    font-size: 0.98rem;
  }

  .about-copy p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .contact-intro h2 {
    font-size: clamp(2.35rem, 11.5vw, 3.75rem);
  }

  .panel p,
  .panel li {
    font-size: 0.98rem;
  }

  .button {
    width: 100%;
  }

  .contact-button {
    width: auto;
  }

  .form-footer {
    justify-content: center;
  }
}

@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;
    scroll-behavior: auto !important;
  }

  body.motion-ready [data-reveal],
  body.motion-ready [data-stagger] > * {
    transform: none !important;
  }
}
