:root {
  --black: #050505;
  --ink: #0a0a0a;
  --ink-2: #111114;
  --white: #ffffff;
  --teal: #2dd4bf;
  --teal-deep: #14b8a6;
  --pink: #ec4899;
  --pink-deep: #db2777;
  --muted: #9ca3af;
  --line: rgba(255, 255, 255, 0.1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__crest {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}
.nav__name {
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 14px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--teal); }
.nav__cta {
  background: var(--teal);
  color: var(--black) !important;
  padding: 9px 16px;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  transition: background .2s ease, transform .15s ease;
}
.nav__cta:hover { background: var(--white); transform: translateY(-1px); }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
}
.lang-toggle__btn {
  background: none;
  border: 0;
  color: rgba(255,255,255,0.55);
  font: 700 11px/1 'Inter', sans-serif;
  letter-spacing: 0.12em;
  padding: 4px 6px;
  cursor: pointer;
  transition: color .15s ease;
  font-family: inherit;
}
.lang-toggle__btn:hover { color: rgba(255,255,255,0.9); }
.lang-toggle__btn.is-active { color: var(--teal); }
.lang-toggle__sep {
  color: rgba(255,255,255,0.25);
  font-size: 11px;
  font-weight: 400;
  pointer-events: none;
}

@media (max-width: 820px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .lang-toggle { padding: 5px 8px; }
  .lang-toggle__btn { font-size: 10px; padding: 3px 4px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05) brightness(0.65);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 35%, rgba(0,0,0,0.85) 100%),
    radial-gradient(800px 400px at 15% 30%, rgba(45,212,191,0.20), transparent 60%),
    radial-gradient(700px 500px at 90% 80%, rgba(236,72,153,0.18), transparent 60%);
}
.hero__stripes {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: repeating-linear-gradient(
    115deg,
    transparent 0 90px,
    rgba(255,255,255,0.035) 90px 92px
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--black));
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 24px 140px;
  width: 100%;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.32em;
  font-weight: 700;
  color: var(--teal);
  border-left: 3px solid var(--teal);
  padding-left: 12px;
  margin-bottom: 28px;
}
.hero__title {
  font-family: 'Anton', 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(64px, 14vw, 200px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  margin: 0 0 28px;
  text-transform: uppercase;
}
.hero__title-accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--pink);
  text-stroke: 2px var(--pink);
}
.hero__tagline {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 40px;
  color: rgba(255,255,255,0.9);
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  right: 32px;
  bottom: 120px;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
  z-index: 2;
}
@media (max-width: 820px) {
  .hero__scroll { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 2px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn--primary {
  background: var(--teal);
  color: var(--black);
}
.btn--primary:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}
.btn--ghost:hover {
  border-color: var(--pink);
  background: rgba(236,72,153,0.08);
  color: #fff;
}
.btn--lg {
  padding: 18px 36px;
  font-size: 14px;
}

/* ---------- Section helpers ---------- */
.kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.36em;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
  padding-left: 36px;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 2px;
  background: var(--teal);
  transform: translateY(-50%);
}
.kicker--light { color: rgba(255,255,255,0.9); }
.section-title {
  font-size: clamp(32px, 5vw, 56px);
  margin: 0 0 24px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #fff;
}
.section-title--light { color: #fff; }

/* ---------- About ---------- */
.about {
  padding: 120px 0;
  background: var(--ink);
  position: relative;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, transparent 0 110px, rgba(255,255,255,0.02) 110px 112px);
  pointer-events: none;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about__text h2 {
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  font-weight: 800;
  color: #fff;
}
.about__text p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  margin: 0 0 18px;
  max-width: 56ch;
}
.stats {
  list-style: none;
  display: flex;
  gap: 36px;
  padding: 0;
  margin: 36px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.stats li { display: flex; flex-direction: column; gap: 4px; }
.stats__num {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  color: var(--teal);
  line-height: 1;
}
.stats__lbl {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.photo-card {
  margin: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.photo-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.photo-card:hover img { transform: scale(1.03); }
.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,212,191,0.0) 60%, rgba(236,72,153,0.18) 100%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 880px) {
  .about { padding: 80px 0; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- Pillars ---------- */
.pillars {
  background: var(--black);
  padding: 120px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pillars::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0.4;
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}
.pillar {
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 32px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(45,212,191,0.4);
  background: #16161a;
}
.pillar__num {
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 16px;
}
.pillar h3 {
  font-size: 24px;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  color: #fff;
}
.pillar p { margin: 0; color: rgba(255,255,255,0.7); font-size: 15px; }
@media (max-width: 880px) {
  .pillars { padding: 80px 0; }
  .pillars__grid { grid-template-columns: 1fr; }
}

/* ---------- Gallery ---------- */
.gallery {
  padding: 120px 0;
  background: var(--ink);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 14px;
  margin-top: 48px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  display: block;
  background: #000;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .3s ease;
  filter: brightness(1.02) saturate(1.05);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5));
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery__item:hover img {
  transform: scale(1.06);
  filter: brightness(1.1) saturate(1.15);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item--tall {
  grid-row: span 2;
}
@media (max-width: 880px) {
  .gallery { padding: 80px 0; }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery__item--tall { grid-row: span 2; }
}
@media (max-width: 540px) {
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery__item--tall { grid-row: span 1; }
}

/* ---------- Partners ---------- */
.partners {
  background: var(--black);
  padding: 100px 0;
  text-align: left;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.partners__row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 3vw, 40px);
  margin-top: 36px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.partner {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  opacity: 0.75;
  transition: opacity .25s ease, transform .25s ease;
}
.partner img {
  max-height: clamp(22px, 3.4vw, 40px);
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.partner:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ---------- Follow ---------- */
.follow {
  background: var(--ink);
  padding: 100px 0;
}
.follow__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 4px solid var(--teal);
  border-bottom: 4px solid var(--pink);
  padding: 60px 0;
  position: relative;
}
.follow h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 8px 0 8px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.follow p { margin: 0; color: var(--muted); font-size: 16px; }
@media (max-width: 820px) {
  .follow__inner { flex-direction: column; align-items: flex-start; padding: 36px 0; }
}

/* ---------- Contact ---------- */
.contact {
  background: var(--ink);
  padding: 120px 0;
  position: relative;
}
.contact::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0.4;
}
.contact__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.contact__intro h2 { color: #fff; }
.contact__intro p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 28px;
  max-width: 44ch;
}
.contact__email {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact__email > span {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.contact__email a {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--teal);
  transition: color .15s ease;
  word-break: break-all;
}
.contact__email a:hover { color: var(--white); }

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.field > span {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
}
.field input,
.field textarea {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  padding: 14px 16px;
  border-radius: 4px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  resize: vertical;
  box-sizing: border-box;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.field input:hover,
.field textarea:hover {
  border-color: rgba(255,255,255,0.25);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(45,212,191,0.06);
  box-shadow: 0 0 0 3px rgba(45,212,191,0.18);
}
.field textarea {
  min-height: 140px;
  font-family: inherit;
}
.contact__form button {
  align-self: flex-start;
  margin-top: 8px;
}
.contact__note {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin: 4px 0 0;
}
@media (max-width: 880px) {
  .contact { padding: 72px 0; }
  .contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .field-row { grid-template-columns: 1fr; gap: 16px; }
  .contact__form { padding: 20px; gap: 16px; }
  .contact__intro p { font-size: 15px; }
  .contact__email a { font-size: 20px; }
  .contact__form button { align-self: stretch; width: 100%; text-align: center; }
}

/* sent banner */
.sent-banner {
  position: fixed;
  top: 16px; left: 50%; transform: translateX(-50%);
  background: var(--teal);
  color: var(--black);
  padding: 12px 24px;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 13px;
  border-radius: 2px;
  z-index: 100;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
  transition: opacity .4s ease, transform .4s ease;
}
.sent-banner--hide { opacity: 0; transform: translate(-50%, -20px); }

/* ---------- Footer ---------- */
.footer {
  background: #000;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__crest { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.footer__name { font-weight: 800; letter-spacing: 0.14em; color: #fff; }
.footer__sub {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
}
.footer__links { display: flex; gap: 24px; justify-content: center; }
.footer__links a {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color .15s ease;
}
.footer__links a:hover { color: var(--teal); }
.footer__legal {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  text-align: right;
}
@media (max-width: 880px) {
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { justify-content: center; }
  .footer__legal { text-align: center; }
}
