:root {
  --bg: #020202;
  --panel: #0c0b09;
  --panel-2: #12100d;
  --text: #f7f5f1;
  --muted: #b9b3aa;
  --line: #965bdd;
  --gold: #7e36d8;
  --gold-2: #392059;
  --violet: #7e36d8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 8px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  background: var(--bg);
  color: var(--text);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  z-index: -1;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.defs {
  display: none;
}
.section {
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(1360px, calc(100% - 32px));
  min-height: 78px;
  margin: 12px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid #7e36d8;
  background:
    linear-gradient(
      90deg,
      rgba(231, 174, 91, 0.08),
      transparent 24%,
      transparent 76%,
      rgba(231, 174, 91, 0.08)
    ),
    rgba(4, 4, 4, 0.76);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  box-shadow:
    0 18px 56px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 34px rgba(231, 174, 91, 0.08);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 6px;
  pointer-events: none;
}
.brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  justify-self: start;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 4px;
}
.brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.36em;
  font-weight: 500;
  color: var(--muted);
}
.nav {
  position: relative;
  z-index: 1;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 7px;
  border: 1px solid #7e36d8;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.065),
    rgba(255, 255, 255, 0.018)
  );
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.35);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7e36d8;
}
.nav a {
  position: relative;
  min-width: 86px;
  padding: 12px 14px;
  border-radius: 999px;
  text-align: center;
  transition:
    color 0.25s,
    background 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 7px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s;
}
.nav a:hover,
.nav a.active {
  color: #ffffff;
  background: linear-gradient(135deg, #7e36d8, #392059);
  box-shadow:
    0 10px 24px rgba(231, 174, 91, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}
.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
  background: rgba(8, 6, 4, 0.42);
}
.nav-cta,
.btn,
.pill-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 13px;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.nav-cta {
  position: relative;
  z-index: 1;
  justify-self: end;
  padding: 0 18px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
}
.btn {
  padding: 0 26px;
}
.primary {
  background: linear-gradient(135deg, #7e36d8, #392059);
  color: #ffffff;
  border-color: rgba(#7e36d8, 0.72);
}
.ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}
.nav-cta:hover,
.btn:hover,
.pill-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px #a279d3;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  color: var(--text);
  width: 42px;
  height: 42px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 7px;
}
.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
  padding-top: 54px;
}
.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 700;
  color: #f4eee7;
}
.eyebrow span {
  width: 24px;
  height: 1px;
  background: var(--gold);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  letter-spacing: 0;
  line-height: 1.02;
}
h1 {
  font-size: clamp(54px, 8vw, 118px);
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(42px, 5.5vw, 72px);
  margin-bottom: 26px;
}
em {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}
.hero-text,
.section-head > p,
.about-content > p,
.contact-left > p {
  color: #d5cec5;
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-showcase {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 560px;
  box-shadow:
    0 0 60px #7e36d8,
    var(--shadow);
}
.hero-showcase::after,
.project-card::after,
.gallery-card::after,
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.78));
  pointer-events: none;
}
.hero-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.07);
}
.hero-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(4, 4, 4, 0.76);
  backdrop-filter: blur(12px);
}
.hero-badge strong {
  display: block;
  color: var(--gold);
  font-size: 42px;
}
.hero-badge span {
  color: var(--muted);
}
.about {
  display: grid;
  grid-template-columns: 0.86fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.about-media {
  height: 740px;
  border-radius: 0 40px 0 0;
  overflow: hidden;
  border: 1px solid #7e36d8;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content blockquote {
  margin: 30px 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  font-size: 24px;
  line-height: 1.35;
}
.about-content blockquote strong {
  display: block;
  color: var(--gold);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.info-card,
.service-card,
.project-card,
.gallery-card,
.contact-form,
.map-card,
.trust-card,
.quick-actions a,
.wide-talk {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.015)
  );
  overflow: hidden;
}
.info-card {
  padding: 28px;
  min-height: 238px;
}
.info-card svg,
.service-icon,
.contact-points svg,
.map-card svg,
.trust-card svg,
.quick-actions svg,
.wide-talk > svg:first-child {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  background: radial-gradient(
    circle,
    rgba(231, 174, 91, 0.23),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: 0 0 24px #7e36d8;
}
.service-icon svg {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}
.info-card h3,
.service-card h3 {
  margin: 22px 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.info-card p,
.service-card p,
.project-card p,
.contact-form p {
  color: var(--muted);
  line-height: 1.55;
}
.stats-bar {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.35fr;
  gap: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(
    95deg,
    rgba(126, 54, 216, 0.12),
    rgba(255, 255, 255, 0.03)
  );
}
.stats-bar div {
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 16px;
  align-items: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stats-bar svg {
  grid-row: 1/3;
  width: 56px;
  height: 56px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
}
.stats-bar strong {
  font-size: 34px;
  color: var(--gold);
}
.stats-bar span {
  color: var(--muted);
  font-size: 13px;
}
.stats-bar blockquote {
  margin: 0;
  padding: 0 10px 0 28px;
  color: #f1ede8;
  font-style: italic;
  line-height: 1.55;
}
.stats-bar b {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}
.section-head h2 {
  margin-bottom: 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  min-height: 220px;
  padding: 22px 210px 22px 24px;
  isolation: isolate;
  cursor: pointer;
  transition:
    transform 0.28s,
    border-color 0.28s,
    box-shadow 0.28s;
}
.service-card:hover,
.project-card:hover,
.gallery-card:hover,
.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba#ffffff;
  box-shadow:
    0 26px 58px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(126, 54, 216, 0.16);
}
.service-card img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 57%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.9;
}
.service-card .num {
  position: absolute;
  left: 96px;
  top: 35px;
  color: #d2ccc5;
}
.service-card h3 {
  font-size: 20px;
  margin-top: 24px;
  text-transform: none;
  letter-spacing: 0;
}
.service-card a,
.project-link,
.map-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 800;
}
.service-card a svg,
.project-link svg,
.map-card a svg,
.wide-talk > svg:last-child {
  width: 28px;
  height: 28px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
}
.center-cta {
  text-align: center;
  margin-top: 28px;
}
.pill-cta {
  padding: 0 34px;
  background: rgba(255, 255, 255, 0.03);
}
.filter-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-row button {
  min-width: 112px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #050505;
  color: var(--text);
  cursor: pointer;
  transition: 0.22s;
}
.filter-row button.active,
.filter-row button:hover {
  background: linear-gradient(#7e36d8);
  color: #070504;
  box-shadow: 0 14px 30px gba(231, 174, 91, 0.18);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.08fr repeat(2, 0.55fr);
  grid-auto-rows: 207px;
  gap: 6px;
}
.project-card {
  min-height: 207px;
  cursor: pointer;
}
.project-card.featured {
  grid-row: span 2;
}
.project-card img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.project-card:hover img,
.gallery-card:hover img {
  transform: scale(1.05);
}
.project-card .content {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 18px;
  bottom: 20px;
}
.tag {
  display: inline-flex;
  padding: 7px 14px;
  border: 1px solid rgba(231, 174, 91, 0.25);
  border-radius: 999px;
  background: rgba(25, 17, 8, 0.75);
  font-size: 12px;
  margin-bottom: 10px;
}
.tag.videos,
.tag.prints {
  background: rgba(65, 22, 117, 0.62);
}
.project-card h3 {
  font-size: 22px;
  margin: 0 0 6px;
}
.project-card:not(.featured) h3 {
  font-size: 16px;
}
.project-link {
  position: absolute;
  right: 18px;
  bottom: 20px;
  z-index: 3;
}
.gallery-head {
  grid-template-columns: 0.9fr 0.65fr 1.1fr;
  align-items: start;
}
.gallery-head .filter-row {
  justify-content: flex-end;
  margin: 26px 0 0;
}
.masonry {
  columns: 4 250px;
  column-gap: 12px;
}
.gallery-card {
  display: block;
  margin: 0 0 12px;
  break-inside: avoid;
  height: var(--h);
  cursor: pointer;
}
.gallery-card::after {
  background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.78));
}
.gallery-card span {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 14px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.25s;
}
.gallery-card:hover span {
  opacity: 1;
  transform: translateY(0);
}
.contact {
  display: grid;
  grid-template-columns: 1fr 0.94fr;
  gap: 58px;
  align-items: start;
}
.contact-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 34px 0 22px;
}
.contact-points a {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.contact-points span {
  color: var(--muted);
  font-size: 12px;
}
.map-card {
  height: 276px;
  margin-top: 22px;
}
.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}
.map-card > div {
  position: absolute;
  left: 24px;
  top: 26px;
  bottom: 26px;
  width: 245px;
  padding: 22px;
  background: rgba(6, 6, 6, 0.77);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.map-card b {
  color: var(--gold);
}
.map-card span {
  color: #d7d0c8;
  line-height: 1.45;
}
.map-card a {
  margin-top: auto;
}
.trust-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  padding: 22px;
}
.trust-card p {
  margin: 0;
  line-height: 1.5;
}
.trust-card strong {
  color: var(--gold);
  font-weight: 500;
}
.trust-card span {
  margin-left: auto;
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-weight: 800;
}
.contact-form {
  padding: 42px 44px;
  box-shadow: 0 0 45px rgba(231, 174, 91, 0.17);
}
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(246, 207, 138, 0.38),
    inset 0 0 35px rgba(231, 174, 91, 0.1);
  pointer-events: none;
}
.contact-form h3 {
  font-size: 30px;
  margin-bottom: 8px;
}
.contact-form label {
  height: 60px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.025);
}
.contact-form label.textarea {
  height: 104px;
  align-items: flex-start;
  padding-top: 17px;
}
.contact-form label svg {
  color: var(--gold);
  flex: 0 0 auto;
}
input,
select,
textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
}
textarea {
  height: 74px;
  resize: none;
}
option {
  background: #111;
  color: var(--text);
}
.contact-form .btn {
  width: 100%;
  margin-top: 26px;
  border: 0;
  cursor: pointer;
}
.form-status {
  display: block;
  min-height: 22px;
  margin-top: 14px;
  color: var(--gold);
  font-weight: 600;
}
.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.quick-actions a {
  min-height: 120px;
  padding: 20px;
  display: grid;
  align-content: center;
  gap: 4px;
}
.quick-actions span {
  color: var(--muted);
  font-size: 12px;
}
.wide-talk {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  padding: 20px 28px;
}
.wide-talk span {
  line-height: 1.5;
}
.wide-talk b {
  display: block;
  color: var(--gold);
  font-weight: 500;
}
.wide-talk strong {
  margin-left: auto;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.project-modal {
  width: min(880px, calc(100% - 36px));
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #090806;
  color: var(--text);
  box-shadow: var(--shadow);
}
.project-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(7px);
}
.project-modal[open] {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
.project-modal img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.project-modal div {
  padding: 42px;
  align-self: center;
}
.project-modal span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.project-modal h3 {
  font-size: 36px;
  margin: 14px 0;
}
.project-modal p {
  color: var(--muted);
  line-height: 1.7;
}
.modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #080808;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (max-width: 1050px) {
  .site-header {
    display: flex;
  }
  .nav,
  .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav.open {
    position: absolute;
    display: grid;
    top: 84px;
    left: 0;
    right: 0;
    padding: 12px;
    background: #070707;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    justify-content: stretch;
  }
  .nav.open a {
    min-width: 0;
    width: 100%;
    padding: 14px;
  }
  .hero,
  .about,
  .contact,
  .section-head,
  .gallery-head {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .hero-showcase {
    min-height: 420px;
  }
  .about-media {
    height: 520px;
  }
  .value-grid,
  .service-grid,
  .stats-bar,
  .contact-points,
  .quick-actions {
    grid-template-columns: 1fr 1fr;
  }
  .stats-bar blockquote {
    grid-column: 1/-1;
    margin-top: 20px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-head .filter-row {
    justify-content: flex-start;
  }
}
@media (max-width: 680px) {
  .section {
    width: min(100% - 24px, 1360px);
    padding: 58px 0;
  }
  .site-header {
    width: calc(100% - 20px);
  }
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 38px;
  }
  .hero-actions,
  .wide-talk {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-showcase {
    min-height: 330px;
  }
  .value-grid,
  .service-grid,
  .stats-bar,
  .contact-points,
  .quick-actions,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 22px;
    min-height: 340px;
  }
  .service-card img {
    width: 100%;
    height: 54%;
    opacity: 0.75;
  }
  .service-card .num {
    left: 92px;
  }
  .project-card.featured {
    grid-row: auto;
  }
  .portfolio-grid {
    grid-auto-rows: 260px;
  }
  .gallery-card {
    height: 260px;
  }
  .contact-form {
    padding: 28px 18px;
  }
  .map-card {
    height: 330px;
  }
  .map-card > div {
    left: 16px;
    right: 16px;
    width: auto;
  }
  .stats-bar div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
  }
  .project-modal[open] {
    grid-template-columns: 1fr;
  }
  .project-modal img {
    min-height: 260px;
  }
}
