:root {
  --bg-dark: #121615;
  --bg-dark-2: #191e1d;
  --bg-light: #f2eee8;
  --bg-soft: #e7e1d8;
  --surface: #fbf8f3;
  --text-dark: #181818;
  --text-muted: #5f625d;
  --text-light: #f8f7f3;
  --accent: #a8e800;
  --accent-bright: #c1f24c;
  --border: rgba(17, 20, 19, 0.12);
  --shadow: 0 18px 40px rgba(16, 22, 20, 0.16);
  --max-width: 1200px;
  --header-height: 88px;
  --radius: 18px;
  --slant: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(18, 22, 21, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-image {
  display: block;
  height: 2rem;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: rgba(248, 247, 243, 0.86);
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-nav a:hover,
.footer-socials a:hover {
  color: #ffffff;
}

.nav-cta {
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: #101312 !important;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text-light);
  transition: transform 200ms ease, opacity 200ms ease;
}

section {
  position: relative;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-light {
  background: var(--bg-light);
}

.section-accent {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.32), transparent 24rem),
    radial-gradient(circle at bottom right, rgba(188, 255, 0, 0.16), transparent 26rem),
    linear-gradient(135deg, #eef2d8 0%, #e3edb4 42%, #d7e79a 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.hero-copy h1 {
  margin: 0 0 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: clamp(3.8rem, 9vw, 7rem);
  max-width: 10ch;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.section-heading p,
.hero-text,
.feature-card p,
.service-card p,
.pricing-card p,
.about-copy p,
.product-card p,
.contact-panel p,
.footer-copy {
  color: inherit;
  opacity: 0.84;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 247, 243, 0.66);
}

.eyebrow-dark {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  background: rgba(12, 14, 14, 0.98) !important;
  box-shadow: 0 10px 22px rgba(22, 25, 24, 0.1);
  color: var(--accent) !important;
  opacity: 1 !important;
}

p.eyebrow-dark,
.section-heading p.eyebrow-dark,
.about-copy p.eyebrow-dark,
.project-intro p.eyebrow-dark {
  color: var(--accent) !important;
  opacity: 1 !important;
}

.hero-section {
  overflow: hidden;
  padding: 3rem 0 5rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(17, 21, 20, 0.82) 0%, rgba(17, 21, 20, 0.5) 38%, rgba(17, 21, 20, 0.72) 100%),
    radial-gradient(circle at top right, rgba(188, 255, 0, 0.3), transparent 26rem),
    linear-gradient(140deg, #101312 0%, #1f2623 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  padding: 4rem 0;
}

.hero-text {
  max-width: 38rem;
  font-size: 1.1rem;
}

.hero-actions,
.section-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #101312;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-bright);
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
}

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

.hero-art {
  display: flex;
  justify-content: flex-end;
}

.hero-media-card {
  width: min(100%, 520px);
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 100% 88%, 92% 100%, 0 100%, 0 12%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #0f1211;
}

.hero-media-image {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  display: block;
  background: linear-gradient(180deg, rgba(17, 20, 19, 0.08), rgba(17, 20, 19, 0.16));
}

.art-placeholder {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 10px,
      transparent 10px,
      transparent 20px
    );
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
}

.art-placeholder span,
.art-placeholder small {
  position: relative;
  z-index: 1;
}

.art-placeholder span {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.art-placeholder small {
  display: block;
  margin-top: 0.5rem;
  max-width: 24ch;
  font-size: 0.88rem;
  opacity: 0.8;
}

.art-placeholder-hero {
  width: min(100%, 520px);
  min-height: 620px;
  clip-path: polygon(8% 0, 100% 0, 100% 88%, 92% 100%, 0 100%, 0 12%);
  box-shadow: var(--shadow);
}

.intro-section,
.portfolio-section,
.services-section,
.support-section,
.about-section,
.store-section,
.contact-section {
  padding: 6rem 0;
}

.feature-grid,
.services-grid,
.pricing-grid,
.store-grid {
  display: grid;
  gap: 1.25rem;
}

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

.feature-card,
.service-card,
.pricing-card,
.product-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card {
  position: relative;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}

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

.feature-card-image {
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(251, 248, 243, 0.72) 0%, rgba(251, 248, 243, 0.8) 42%, rgba(251, 248, 243, 0.88) 100%);
}

.feature-card-art-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  filter: saturate(0.92);
  opacity: 0.72;
  background: linear-gradient(180deg, rgba(17, 20, 19, 0.08), rgba(17, 20, 19, 0.16));
}

.feature-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(251, 248, 243, 0.48) 0%, rgba(251, 248, 243, 0.62) 34%, rgba(251, 248, 243, 0.82) 100%),
    linear-gradient(90deg, rgba(251, 248, 243, 0.78) 0%, rgba(251, 248, 243, 0.38) 55%, rgba(251, 248, 243, 0.68) 100%);
}

.feature-card h3,
.service-card h3,
.pricing-card h3,
.product-card h3,
.card-overlay h3 {
  margin: 0 0 0.8rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.portfolio-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border-radius: var(--radius);
  clip-path: var(--slant);
  box-shadow: var(--shadow);
  background: rgba(24, 32, 29, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(155deg, rgba(21, 26, 25, 0.16), rgba(10, 10, 10, 0.48)),
    linear-gradient(180deg, rgba(10, 11, 11, 0.06) 0%, rgba(10, 11, 11, 0.18) 54%, rgba(10, 11, 11, 0.74) 100%);
}

.card-overlay {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem;
  background: linear-gradient(to top, rgba(10, 11, 11, 0.92), rgba(10, 11, 11, 0.18));
  color: var(--text-light);
}

.card-overlay p {
  margin: 0;
  max-width: 30ch;
  opacity: 0.82;
}

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

.services-section {
  overflow: hidden;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.services-section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  filter: saturate(0.88);
  background: linear-gradient(180deg, rgba(17, 20, 19, 0.08), rgba(17, 20, 19, 0.16));
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(18, 22, 21, 0.88) 0%, rgba(18, 22, 21, 0.84) 42%, rgba(18, 22, 21, 0.92) 100%),
    radial-gradient(circle at top right, rgba(188, 255, 0, 0.08), transparent 22rem);
}

.service-card {
  padding: 1.7rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.support-heading {
  max-width: 820px;
}

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

.pricing-card {
  padding: 2.05rem;
  background: rgba(251, 248, 243, 0.96);
  border: 1px solid rgba(17, 20, 19, 0.08);
  box-shadow: 0 24px 44px rgba(32, 38, 29, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured-plan {
  position: relative;
  transform: translateY(-14px) scale(1.015);
  border: 1px solid rgba(188, 255, 0, 0.46);
  box-shadow: 0 28px 54px rgba(128, 160, 44, 0.18);
}

.plan-badge {
  margin: 0;
  align-self: flex-start;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(188, 255, 0, 0.18);
  color: #2b3218;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 1 !important;
}

.package-label {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent) !important;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  background: rgba(12, 14, 14, 0.98) !important;
  opacity: 1 !important;
}

p.package-label,
.pricing-card p.package-label {
  color: var(--accent) !important;
  opacity: 1 !important;
}

.pricing-card h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 0.95;
}

.pricing-card h3 span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.pricing-card p {
  margin: 0;
}

.pricing-card ul {
  margin: 0.25rem 0 0;
  padding-left: 1.1rem;
}

.pricing-card li {
  color: #222625;
}

.pricing-card li::marker {
  color: #2d331f;
}

.pricing-card li + li {
  margin-top: 0.65rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  background: rgba(12, 14, 14, 0.98) !important;
  box-shadow: 0 10px 22px rgba(22, 25, 24, 0.12);
  font-weight: 800;
  color: var(--accent) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 1 !important;
}

.art-placeholder-tall {
  min-height: 480px;
  border-color: rgba(17, 20, 19, 0.12);
  background:
    linear-gradient(145deg, rgba(188, 255, 0, 0.14), rgba(17, 20, 19, 0.03)),
    repeating-linear-gradient(
      -45deg,
      rgba(188, 255, 0, 0.1) 0,
      rgba(188, 255, 0, 0.1) 10px,
      transparent 10px,
      transparent 20px
    );
}

.about-media-card {
  position: relative;
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: #d9d4cb;
}

.about-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(242, 238, 232, 0.12) 0%, rgba(242, 238, 232, 0.06) 100%),
    linear-gradient(145deg, rgba(188, 255, 0, 0.08), rgba(17, 20, 19, 0.02));
}

.about-media-image {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}

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

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}

.product-media-shell {
  min-height: 260px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(188, 255, 0, 0.28), transparent 15rem),
    linear-gradient(135deg, #49544f 0%, #242b28 100%);
  overflow: hidden;
}

.product-media-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-card h3,
.product-card p {
  padding: 0 1.4rem;
}

.product-card p {
  padding-bottom: 1.5rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-link:hover,
.social-link:focus-visible,
.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(188, 255, 0, 0.5);
  background: rgba(188, 255, 0, 0.08);
}

.social-icon,
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(188, 255, 0, 0.12);
  color: var(--accent);
  flex-shrink: 0;
}

.social-icon svg,
.footer-social-link svg {
  width: 1.1rem;
  height: 1.1rem;
}

.contact-panel {
  max-width: 760px;
}

.site-footer {
  padding: 2.5rem 0 1.5rem;
  background: #0d100f;
  color: rgba(248, 247, 243, 0.72);
}

.footer-inner,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-inner {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-nav,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social-link {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-copy,
.footer-bottom p {
  margin: 0;
}

body.menu-open {
  overflow: hidden;
}

.portfolio-page {
  background: var(--bg-light);
}

.portfolio-hero {
  overflow: hidden;
  padding: 3rem 0 5rem;
}

.portfolio-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(17, 21, 20, 0.88), rgba(17, 21, 20, 0.56)),
    radial-gradient(circle at top right, rgba(188, 255, 0, 0.24), transparent 24rem),
    linear-gradient(145deg, #101312, #1f2623);
}

.portfolio-hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.portfolio-hero-copy h1 {
  margin: 0 0 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.portfolio-hero-copy p:not(.eyebrow) {
  max-width: 40rem;
  opacity: 0.84;
}

.media-section,
.archive-section,
.process-section {
  padding: 6rem 0;
}

.media-type-grid,
.portfolio-archive-grid,
.process-grid {
  display: grid;
  gap: 1.25rem;
}

.media-type-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.media-type-card,
.archive-card,
.process-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-type-card {
  padding: 1.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
}

.media-type-card h3,
.archive-copy h3,
.process-card h3 {
  margin: 0 0 0.75rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.portfolio-archive-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.archive-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}

.archive-card-link {
  display: block;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.archive-card-link:hover,
.archive-card-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(188, 255, 0, 0.4);
}

.archive-card-wide {
  grid-column: span 2;
}

.archive-placeholder {
  min-height: 280px;
  border: none;
  border-radius: 0;
  background:
    linear-gradient(155deg, rgba(37, 44, 42, 0.18), rgba(10, 10, 10, 0.5)),
    radial-gradient(circle at top right, rgba(188, 255, 0, 0.28), transparent 18rem),
    linear-gradient(135deg, #46534e 0%, #202826 100%);
  color: var(--text-light);
}

.archive-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  background: linear-gradient(180deg, rgba(17, 20, 19, 0.08), rgba(17, 20, 19, 0.18));
}

.archive-copy {
  padding: 1.4rem;
}

.archive-tag {
  margin: 0 0 0.5rem;
  color: var(--accent) !important;
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.56rem;
  border-radius: 999px;
  background: rgba(12, 14, 14, 0.98) !important;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 1 !important;
}

p.archive-tag,
.archive-copy p.archive-tag {
  color: var(--accent) !important;
  opacity: 1 !important;
}

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

.process-card {
  position: relative;
  padding: 1.8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

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

.process-card-image {
  min-height: 240px;
}

.process-card-art-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.46;
  filter: saturate(0.9);
  background: linear-gradient(180deg, rgba(17, 20, 19, 0.08), rgba(17, 20, 19, 0.16));
}

.process-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(18, 22, 21, 0.36) 0%, rgba(18, 22, 21, 0.48) 42%, rgba(18, 22, 21, 0.76) 100%),
    linear-gradient(135deg, rgba(188, 255, 0, 0.06), rgba(18, 22, 21, 0.08));
}

.project-page {
  background: var(--bg-light);
}

.project-hero {
  overflow: hidden;
  padding: 3rem 0 5rem;
}

.project-hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.project-hero-copy h1 {
  margin: 0 0 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.project-category {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-content {
  padding: 6rem 0;
}

.project-shell {
  display: grid;
  gap: 2rem;
}

.project-intro {
  max-width: 820px;
}

.project-intro .eyebrow {
  color: var(--accent) !important;
  opacity: 1 !important;
}

.project-intro h2 {
  margin: 0 0 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.project-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.project-info-card {
  padding: 1.25rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(17, 20, 19, 0.08);
  box-shadow: 0 12px 28px rgba(20, 24, 22, 0.08);
}

.project-info-label {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.project-info-value {
  margin: 0;
  color: #202524;
}

.project-gallery-intro p:last-child {
  margin: 0;
  max-width: 54rem;
  color: var(--text-muted);
}

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

.gallery-empty {
  margin: 0;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(17, 20, 19, 0.04);
  color: var(--text-muted);
}

.media-tile {
  position: relative;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #111413;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(16, 20, 18, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.media-tile:hover,
.media-tile:focus-visible {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(188, 255, 0, 0.45);
  box-shadow: 0 18px 34px rgba(16, 20, 18, 0.16);
}

.media-thumb {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 180ms ease, filter 180ms ease;
  background: linear-gradient(180deg, rgba(17, 20, 19, 0.08), rgba(17, 20, 19, 0.16));
}

.media-tile:hover .media-thumb,
.media-tile:focus-visible .media-thumb {
  transform: scale(1.03);
  filter: brightness(0.82);
}

.media-badge {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(17, 20, 19, 0.8);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(8, 10, 10, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-stage {
  width: min(1100px, calc(100vw - 8rem));
  max-height: calc(100vh - 7rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-shell {
  width: min(1120px, calc(100vw - 8rem));
  display: grid;
  gap: 1rem;
}

.lightbox-media {
  max-width: 100%;
  max-height: calc(100vh - 7rem);
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.lightbox-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(248, 247, 243, 0.86);
}

.lightbox-counter,
.lightbox-caption {
  margin: 0;
}

.lightbox-counter {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-caption {
  max-width: 70ch;
  text-align: right;
  color: rgba(248, 247, 243, 0.72);
}

.lightbox-arrow,
.lightbox-close {
  position: absolute;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox-arrow:hover,
.lightbox-arrow:focus-visible,
.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(188, 255, 0, 0.18);
  transform: translateY(-2px);
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 3.2rem;
  height: 3.2rem;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

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

  .pricing-grid,
  .store-grid,
  .feature-grid,
  .about-grid,
  .hero-grid,
  .portfolio-hero-grid,
  .project-hero-grid,
  .media-type-grid,
  .process-grid,
  .project-info-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 1rem;
  }

  .hero-art {
    justify-content: flex-start;
  }

  .art-placeholder-hero {
    min-height: 460px;
  }

  .hero-media-card,
  .hero-media-image {
    min-height: 460px;
  }

  .featured-plan {
    transform: none;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 78px;
  }

  .nav-toggle {
    display: inline-block;
    position: relative;
    z-index: 1001;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    padding: 1.25rem 1rem 1.5rem;
    background: rgba(18, 22, 21, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 0.9rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .portfolio-grid,
  .services-grid,
  .pricing-grid,
  .store-grid,
  .social-grid,
  .portfolio-archive-grid,
  .media-gallery {
    grid-template-columns: 1fr;
  }

  .archive-card-wide {
    grid-column: span 1;
  }

  .hero-section,
  .intro-section,
  .portfolio-section,
  .services-section,
  .support-section,
  .about-section,
  .store-section,
  .contact-section,
  .media-section,
  .archive-section,
  .process-section,
  .portfolio-hero,
  .project-hero,
  .project-content {
    padding: 4.5rem 0;
  }

  .footer-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max-width), calc(100% - 1.25rem));
  }

  .hero-copy h1 {
    max-width: 8ch;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-actions,
  .contact-actions,
  .section-actions {
    flex-direction: column;
  }

  .art-placeholder-hero {
    min-height: 360px;
  }

  .hero-media-card,
  .hero-media-image {
    min-height: 360px;
  }

  .portfolio-card,
  .portfolio-card .art-placeholder {
    min-height: 320px;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-stage {
    width: calc(100vw - 4rem);
  }

  .lightbox-shell {
    width: calc(100vw - 4rem);
  }

  .lightbox-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .lightbox-caption {
    text-align: left;
  }

  .lightbox-arrow {
    width: 2.8rem;
    height: 2.8rem;
  }
}
