:root {
  --bg: #c8c4bc;
  --surface: #bab6ae;
  --card: #d4d0c8;
  --border: rgba(60, 55, 45, 0.18);
  --border-strong: rgba(60, 55, 45, 0.35);
  --text: #1e1c18;
  --muted: #6a6660;
  --white: #f0ede6;
  --dark: #252320;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Mono", monospace;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background: linear-gradient(to bottom, var(--bg) 55%, transparent);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.nav-logo svg {
  width: 30px;
  height: 30px;
}
.nav-logo-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 21px;
  letter-spacing: 0.06em;
  color: var(--text);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover {
  color: var(--text);
}

/* LANGUAGE SWITCH BUTTON */
.lang-switch form {
  margin: 0;
}

.lang-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;

  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: var(--muted);
  transition: color 0.25s;

  position: relative;
}

/* hover like nav links */
.lang-btn:hover {
  color: var(--text);
}

.lang-btn:hover::after {
  transform: scaleX(1);
}

/* Custom arrow */
.nav-links li {
  position: relative;
}

.nav-links li:has(#lang)::after {
  content: "▾";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--muted);
  pointer-events: none;
  transition: color 0.25s;
}

.nav-links li:has(#lang):hover::after {
  color: var(--text);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 140px 48px 80px;
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--muted);
}
.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(70px, 9vw, 126px);
  line-height: 0.93;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 32px;
}
.hero-title .dim {
  color: var(--muted);
}
.hero-desc {
  max-width: 340px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
  margin-bottom: 40px;
}
.hero-cta {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
  padding: 13px 30px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--text);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost::after {
  content: "→";
  transition: transform 0.25s;
}
.btn-ghost:hover {
  color: var(--text);
}
.btn-ghost:hover::after {
  transform: translateX(4px);
}

.hero-visual {
  position: relative;
  height: 540px;
}
.hv-main {
  position: absolute;
  top: 0;
  left: 8%;
  right: 0;
  bottom: 70px;
  background: #a4a09a;
  overflow: hidden;
  object-fit: fill;
}
.hv-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hv-sub {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 62%;
  background: #b8b5ae;
  border: 3px solid var(--bg);
  overflow: hidden;
}
.hv-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* STATS */
.stats-bar {
  background: var(--dark);
  padding: 22px 48px;
  display: flex;
}
.stat {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat:first-child {
  padding-left: 0;
}
.stat:last-child {
  border-right: none;
}
.stat-n {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.03em;
}
.stat-l {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* SECTIONS */
section {
  padding: 96px 48px;
}

.sh {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-strong);
}
.sl {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.st {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1;
}
.sa {
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--border-strong);
}
.sa:hover {
  color: var(--text);
  border-color: var(--text);
}
.sa::after {
  content: "→";
}

/* PHOTO GRID */
.pg {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
}
.gi {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.gi:nth-child(1) {
  grid-column: span 8;
}
.gi:nth-child(2) {
  grid-column: span 4;
}
.gi:nth-child(3) {
  grid-column: span 4;
}
.gi:nth-child(4) {
  grid-column: span 4;
}
.gi:nth-child(5) {
  grid-column: span 4;
}
.gii {
  width: 100%;
  padding-top: 70%;
  position: relative;
  overflow: hidden;
}
.gi:nth-child(1) .gii {
  padding-top: 58%;
}
.gi:nth-child(3) .gii,
.gi:nth-child(4) .gii,
.gi:nth-child(5) .gii {
  padding-top: 92%;
}
.gbg {
  position: absolute;
  inset: 0;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gi:hover .gbg {
  transform: scale(1.05);
}
.gb1 {
  background: #a8a49c;
}
.gb2 {
  background: #9c9890;
}
.gb3 {
  background: #b4b0a8;
}
.gb4 {
  background: #929088;
}
.gb5 {
  background: #aaa8a0;
}
.gov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(25, 23, 20, 0.78) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}
.gi:hover .gov {
  opacity: 1;
}
.gtag {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.65);
  margin-bottom: 3px;
}
.gtitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--white);
}

/* VIDEO */
.vs {
  background: var(--card);
}
.vg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.vc {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.vt {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}
.vbg {
  position: absolute;
  inset: 0;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.vc:hover .vbg {
  transform: scale(1.05);
}
.vb1 {
  background: #969290;
}
.vb2 {
  background: #888480;
}
.vb3 {
  background: #a0a09a;
}
.play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 1px solid rgba(30, 28, 24, 0.38);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.play::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 13px;
  border-color: transparent transparent transparent rgba(30, 28, 24, 0.75);
  margin-left: 3px;
  transition: border-color 0.3s;
}
.vc:hover .play {
  background: rgba(30, 28, 24, 0.14);
  border-color: rgba(30, 28, 24, 0.65);
}
.vi {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: var(--card);
}
.vm {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
}
.vn {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--text);
}

/* ABOUT */
.ab {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ap {
  position: relative;
}
.aph {
  width: 100%;
  padding-top: 115%;
  background: #a8a4a0;
  position: relative;
}
.aph::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -20px;
  bottom: -20px;
  left: 20px;
  border: 1px solid var(--border-strong);
  z-index: -1;
}
.atag {
  position: absolute;
  bottom: -16px;
  right: 20px;
  background: var(--dark);
  color: var(--white);
  padding: 11px 16px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.atag strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  margin-bottom: 1px;
}
.ac h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 22px;
  margin-top: 8px;
}
.ac p {
  color: var(--muted);
  font-size: 12px;
  line-height: 2;
  margin-bottom: 12px;
}
.svc {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-strong);
  border: 1px solid var(--border-strong);
}
.svi {
  background: var(--bg);
  padding: 12px 15px;
  font-size: 11px;
  letter-spacing: 0.07em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 9px;
}
.svi::before {
  content: "○";
  color: var(--muted);
  font-size: 8px;
}

/* CONTACT */
.cs {
  background: var(--dark);
}
.ci {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.ctt {
  font-family: "Bebas Neue", sans-serif;
  font-size: 58px;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 26px;
  margin-top: 8px;
}
.ctt .dim {
  color: rgba(255, 255, 255, 0.3);
}
.cb {
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  line-height: 2;
  margin-bottom: 32px;
}
.cls {
  display: flex;
  flex-direction: column;
}
.cl {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.25s;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cl:hover {
  color: var(--white);
}
.cll {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  min-width: 58px;
}
.form {
  display: flex;
  flex-direction: column;
}
.fi {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 15px 0;
  color: var(--white);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.25s;
  margin-bottom: 1px;
}
.fi::placeholder {
  color: rgba(255, 255, 255, 0.22);
}
.fi:focus {
  border-color: rgba(255, 255, 255, 0.45);
}
textarea.fi {
  min-height: 108px;
  resize: none;
}
.fsub {
  margin-top: 26px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.65);
  padding: 13px 26px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
  align-self: flex-start;
}
.fsub:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

/* FOOTER */
footer {
  background: var(--dark);
  padding: 22px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer p {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.1em;
}
.fl {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fl svg {
  width: 20px;
  height: 20px;
  opacity: 0.45;
}
.fl span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.28);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-eyebrow {
  animation: fadeUp 0.7s 0.2s both;
}
.hero-title {
  animation: fadeUp 0.8s 0.33s both;
}
.hero-desc {
  animation: fadeUp 0.7s 0.48s both;
}
.hero-cta {
  animation: fadeUp 0.7s 0.58s both;
}
.hero-visual {
  animation: fadeUp 0.9s 0.38s both;
}

@media (max-width: 900px) {
  nav {
    padding: 18px 24px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 56px;
  }
  .hero-visual {
    height: 260px;
  }
  section {
    padding: 60px 24px;
  }
  .stats-bar {
    padding: 20px 24px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .stat {
    border-right: none;
    padding: 0;
  }
  .pg {
    grid-template-columns: 1fr 1fr;
  }
  .gi:nth-child(1) {
    grid-column: span 2;
  }
  .gi:nth-child(n + 2) {
    grid-column: span 1;
  }
  .vg {
    grid-template-columns: 1fr;
  }
  .ab {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ci {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
