:root {
  --dark: #11120f;
  --dark-2: #171814;
  --dark-3: #20211d;
  --light: #f3f1e8;
  --white: #ffffff;
  --text-soft: rgba(255,255,255,.68);
  --text-dark: #171814;
  --muted-dark: #3f4038;
  --accent: #c7d82f;
  --accent-dark: #8a9726;
  --border-light: rgba(255,255,255,.12);
  --border-dark: rgba(17,18,15,.12);
  --font-title: "Red Hat Display", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.narrow {
  width: min(930px, calc(100% - 40px));
}

.center {
  text-align: center;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(17, 18, 15, .78);
  backdrop-filter: blur(18px);
  transition: .25s ease;
}

.site-header.scrolled {
  background: rgba(17, 18, 15, .94);
}

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

.brand img {
  width: 178px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.72);
}

.main-nav a {
  transition: .2s ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.header-cta {
  border: 1px solid rgba(199,216,47,.5);
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  font-size: 14px;
  transition: .25s ease;
}

.header-cta:hover {
  background: var(--accent);
  color: var(--dark);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
  position: absolute;
  left: 12px;
  transition: .25s ease;
}

.menu-toggle span:first-child {
  top: 16px;
}

.menu-toggle span:last-child {
  bottom: 16px;
}

.menu-toggle.active span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle.active span:last-child {
  bottom: 21px;
  transform: rotate(-45deg);
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background: var(--dark);
}

.hero-video,
.hero-video video,
.hero-overlay,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .34;
  filter: grayscale(1);
}

.hero-overlay {
  background:
    linear-gradient(130deg, rgba(17,18,15,.98) 0%, rgba(31,33,28,.90) 48%, rgba(9,10,8,.96) 100%),
    rgba(17,18,15,.35);
}

.hero-glow {
  pointer-events: none;
}

.hero-glow-one {
  background: radial-gradient(circle at 78% 18%, rgba(199,216,47,.24), transparent 32%);
}

.hero-glow-two {
  background: radial-gradient(circle at 10% 82%, rgba(255,255,255,.09), transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  margin: 0 0 26px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .24em;
}

.eyebrow {
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 12px 16px;
  color: rgba(255,255,255,.68);
  background: rgba(255,255,255,.05);
}

.section-kicker {
  color: var(--accent);
}

.section-light .section-kicker,
.clients .section-kicker {
  color: var(--accent-dark);
}

.hero-title,
h2,
h3 {
  font-family: var(--font-title);
}

.hero-title {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(54px, 8vw, 118px);
  line-height: .92;
  letter-spacing: -.075em;
  font-weight: 900;
}

.hero-title span:last-child {
  display: block;
  color: rgba(255,255,255,.68);
}

.word-rotator {
  display: inline-block;
  min-width: 9ch;
  color: var(--accent);
  transition: opacity .2s ease, transform .2s ease;
}

.word-rotator.changing {
  opacity: 0;
  transform: translateY(16px);
}

.hero-text {
  max-width: 680px;
  margin: 34px 0 0;
  color: rgba(255,255,255,.74);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.btn {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  font-weight: 900;
  cursor: pointer;
  transition: .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.section-light {
  background: var(--light);
  color: var(--text-dark);
  padding: 120px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
  padding: 120px 0;
}

.intro h2,
.section-head h2,
.cases-intro h2,
.clients h2,
.contact h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 70px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 900;
}

.intro p:not(.section-kicker) {
  margin: 26px auto 0;
  max-width: 870px;
  font-size: 20px;
  line-height: 1.75;
  color: var(--muted-dark);
}

.section-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 56px;
}

.section-head p:last-child {
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: 34px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.service-image {
  height: 230px;
  position: relative;
  overflow: hidden;
}

.service-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark), transparent 70%);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: .72;
  transition: .7s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.06);
  filter: grayscale(0);
}

.service-content {
  padding: 30px;
}

.service-content span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  background: var(--accent);
  color: var(--dark);
  border-radius: 16px;
  font-weight: 900;
}

.service-content h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.service-content strong {
  display: block;
  margin-top: 18px;
  color: var(--accent);
  line-height: 1.5;
}

.service-content p {
  margin: 16px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.expertise {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background: var(--dark-3);
}

.expertise-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,18,15,.98), rgba(17,18,15,.86), rgba(17,18,15,.46)),
    url("https://images.unsplash.com/photo-1581093458791-9d15482442f6?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  filter: grayscale(1);
}

.expertise-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 70px;
  align-items: center;
}

.expertise-title h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -.065em;
}

.expertise-card {
  border: 1px solid var(--border-light);
  border-radius: 34px;
  padding: 42px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
}

.expertise-card p {
  margin: 0;
  font-size: 21px;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
}

.expertise-card p + p {
  margin-top: 28px;
}

.cases-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: end;
}

.cases-intro p:not(.section-kicker) {
  margin: 0;
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 1.75;
}

.cases-intro p + p {
  margin-top: 22px;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 58px;
}

.case-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-radius: 34px;
  background: var(--dark-2);
  color: var(--white);
  transition: .25s ease;
}

.case-card:hover {
  transform: translateY(-5px);
  background: #22241e;
}

.case-card span {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
}

.case-card h3 {
  margin: 36px 0 0;
  font-size: 31px;
  line-height: 1.02;
  letter-spacing: -.04em;
}

.case-card p {
  margin: 26px 0 0;
  color: rgba(255,255,255,.52);
}

.clients {
  padding: 105px 0;
  background: #fff;
  color: var(--text-dark);
}

.clients h2 {
  max-width: 850px;
  margin: 0 auto;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.client-grid div {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid var(--border-dark);
  border-radius: 28px;
  background: var(--light);
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.035em;
  color: rgba(17,18,15,.7);
}

.contact-box {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: stretch;
  border: 1px solid var(--border-light);
  border-radius: 42px;
  padding: 48px;
  background: rgba(255,255,255,.04);
}

.contact-main p:not(.section-kicker) {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.7;
}

.contact-main .btn {
  margin-top: 36px;
}

.contact-info,
.contact-form {
  border-radius: 32px;
  background: var(--dark-2);
  padding: 30px;
}

.contact-info {
  display: grid;
  gap: 22px;
}

.contact-info span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,.44);
  font-size: 14px;
}

.contact-info strong {
  font-size: 18px;
}

.contact-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-form textarea,
.contact-form small {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  outline: 0;
  background: rgba(255,255,255,.04);
  color: var(--white);
  padding: 18px 18px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,.42);
}

.contact-form small {
  color: rgba(255,255,255,.42);
  line-height: 1.5;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--border-light);
  background: var(--dark);
  color: rgba(255,255,255,.42);
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .header-cta {
    display: none;
  }

  .main-nav {
    gap: 18px;
  }

  .services-grid,
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head,
  .expertise-inner,
  .cases-intro,
  .contact-box {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 150px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    background: rgba(17,18,15,.98);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 16px;
    border-radius: 16px;
  }

  .main-nav a:hover {
    background: rgba(255,255,255,.06);
  }

  .hero {
    padding-top: 120px;
  }

  .hero-title {
    font-size: clamp(48px, 14vw, 70px);
    letter-spacing: -.065em;
  }

  .word-rotator {
    min-width: 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section-light,
  .section-dark,
  .expertise,
  .clients {
    padding: 82px 0;
  }

  .section-head {
    gap: 28px;
    margin-bottom: 38px;
  }

  .services-grid,
  .cases-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .service-image {
    height: 210px;
  }

  .expertise-card,
  .contact-box {
    padding: 26px;
    border-radius: 30px;
  }

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


/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 58px;
}

.portfolio-card {
  position: relative;
}

.portfolio-open {
  width: 100%;
  height: 330px;
  position: relative;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 34px;
  background: var(--dark-2);
  cursor: pointer;
  padding: 0;
  color: var(--white);
  text-align: left;
  box-shadow: 0 22px 60px rgba(17,18,15,.12);
}

.portfolio-open img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease, filter .65s ease;
}

.portfolio-open:hover img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.04);
}

.portfolio-overlay {
  position: absolute;
  inset: auto 0 0;
  min-height: 48%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(17,18,15,.96), rgba(17,18,15,.58), transparent);
}

.portfolio-overlay small {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
}

.portfolio-overlay strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-title);
  font-size: 26px;
  line-height: 1.03;
  letter-spacing: -.04em;
}

.portfolio-overlay em {
  margin-top: 16px;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  font-style: normal;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(8,9,7,.92);
  backdrop-filter: blur(12px);
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  width: min(1120px, 100%);
  margin: 0;
  color: var(--white);
}

.lightbox-content img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 26px;
  background: #000;
  box-shadow: 0 30px 100px rgba(0,0,0,.55);
}

.lightbox-content figcaption {
  margin-top: 18px;
  display: grid;
  gap: 7px;
}

.lightbox-content figcaption span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.lightbox-content figcaption strong {
  font-family: var(--font-title);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -.045em;
}

.lightbox-content figcaption p {
  margin: 0;
  max-width: 760px;
  color: rgba(255,255,255,.68);
  line-height: 1.6;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  border: 1px solid var(--border-light);
  background: rgba(255,255,255,.08);
  color: var(--white);
  cursor: pointer;
  transition: .2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--accent);
  color: var(--dark);
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  font-size: 34px;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 54px;
  height: 72px;
  border-radius: 999px;
  transform: translateY(-50%);
  font-size: 52px;
  line-height: .8;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

@media (max-width: 1000px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-open {
    height: 300px;
    border-radius: 28px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
    width: 50px;
    height: 50px;
    font-size: 42px;
  }

  .lightbox-prev {
    left: 18px;
  }

  .lightbox-next {
    right: 18px;
  }

  .lightbox-content img {
    max-height: 64vh;
    border-radius: 18px;
  }
}


/* Portfolio grouped by project */
.portfolio-group-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 58px;
}

.portfolio-group-card {
  position: relative;
}

.portfolio-group-open {
  width: 100%;
  height: 360px;
  position: relative;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 34px;
  background: var(--dark-2);
  cursor: pointer;
  padding: 0;
  color: var(--white);
  text-align: left;
  box-shadow: 0 22px 60px rgba(17,18,15,.12);
}

.portfolio-group-open:before,
.portfolio-group-open:after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -10px;
  height: 32px;
  border-radius: 0 0 28px 28px;
  background: rgba(17,18,15,.28);
  z-index: -1;
}

.portfolio-group-open:after {
  left: 34px;
  right: 34px;
  bottom: -20px;
  background: rgba(17,18,15,.16);
}

.portfolio-group-open img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease, filter .65s ease;
}

.portfolio-group-open:hover img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.04);
}

.portfolio-group-overlay {
  position: absolute;
  inset: auto 0 0;
  min-height: 54%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: linear-gradient(to top, rgba(17,18,15,.97), rgba(17,18,15,.62), transparent);
}

.portfolio-group-overlay small {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
}

.portfolio-group-overlay strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-title);
  font-size: 29px;
  line-height: 1.02;
  letter-spacing: -.045em;
}

.portfolio-group-overlay em {
  width: fit-content;
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.06);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

#lightboxCounter {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 7px 11px;
  color: rgba(255,255,255,.64);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 1000px) {
  .portfolio-group-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .portfolio-group-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-group-open {
    height: 330px;
    border-radius: 28px;
  }
}


/* Mulk-inspired header and hero adjustments */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(8px);
  transition: background .25s ease, border-color .25s ease, min-height .25s ease;
}

.site-header.scrolled {
  background: rgba(17,18,15,.84);
  border-bottom-color: rgba(255,255,255,.10);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 96px;
}

.site-header.scrolled .header-inner {
  min-height: 78px;
}

.brand img {
  width: 188px;
}

.main-nav {
  color: rgba(255,255,255,.90);
  font-size: 15px;
  letter-spacing: .01em;
}

.header-cta {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}

.header-cta:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--dark);
}

.hero {
  padding-top: 132px;
  background: var(--dark);
}

.hero-photo,
.hero-overlay,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background:
    url("../img/hero/hero-evento.jpg") center center / cover no-repeat;
  opacity: .72;
  filter: grayscale(1);
  transform: scale(1.02);
}

.hero-video {
  display: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(37,42,43,.74) 0%, rgba(37,42,43,.66) 42%, rgba(37,42,43,.58) 100%),
    linear-gradient(180deg, rgba(17,18,15,.18) 0%, rgba(17,18,15,.44) 100%);
}

.hero-glow-one,
.hero-glow-two {
  display: none;
}

.eyebrow {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.22);
  color: rgba(255,255,255,.82);
}

.hero-title {
  max-width: 920px;
  color: #fff;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 1.03;
  letter-spacing: -.055em;
}

.hero-title span:last-child {
  color: rgba(255,255,255,.94);
}

.word-rotator {
  color: var(--accent);
}

.hero-text {
  color: rgba(255,255,255,.90);
  max-width: 660px;
}

.btn-primary {
  border-radius: 0;
  padding-left: 34px;
  padding-right: 34px;
}

.btn-secondary {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.26);
}

.portfolio-group-overlay em {
  display: none !important;
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 78px;
  }

  .site-header.scrolled .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 150px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-title {
    font-size: clamp(44px, 13vw, 64px);
  }

  .main-nav {
    background: rgba(17,18,15,.96);
  }
}


/* Hero using real portfolio event image */
.hero-photo {
  opacity: .86;
  filter: grayscale(.18) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(37,42,43,.76) 0%, rgba(37,42,43,.68) 42%, rgba(37,42,43,.48) 100%),
    linear-gradient(180deg, rgba(17,18,15,.14) 0%, rgba(17,18,15,.50) 100%);
}


/* Language selector */
.language-selector {
  position: relative;
  z-index: 10;
}

.language-current {
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255,255,255,.05);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  font-size: 13px;
  transition: .2s ease;
}

.language-current:hover {
  border-color: rgba(199,216,47,.7);
  color: var(--accent);
}

.language-current .flag {
  font-size: 16px;
  line-height: 1;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 176px;
  display: none;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 8px;
  background: rgba(17,18,15,.96);
  box-shadow: 0 20px 60px rgba(0,0,0,.32);
  backdrop-filter: blur(18px);
}

.language-selector.open .language-dropdown {
  display: grid;
  gap: 4px;
}

.language-dropdown button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 12px;
  padding: 10px 11px;
  background: transparent;
  color: rgba(255,255,255,.78);
  text-align: left;
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
  transition: .18s ease;
}

.language-dropdown button:hover,
.language-dropdown button.active {
  background: rgba(199,216,47,.13);
  color: var(--accent);
}

.language-dropdown span {
  font-size: 16px;
}

@media (max-width: 1000px) {
  .language-selector {
    margin-left: auto;
  }
}

@media (max-width: 760px) {
  .language-selector {
    position: fixed;
    top: 17px;
    right: 68px;
  }

  .language-current {
    height: 42px;
  }

  .language-current .lang-code {
    display: none;
  }

  .language-dropdown {
    right: 0;
  }
}
