* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body,
button,
input,
textarea,
select {
  font-family: "Electrolize", Arial, sans-serif;
}


body {
  margin: 0;
  background: #151514;
  color: #f5f5f5;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

h1, h2, h3 {
  font-weight: 400;
  letter-spacing: 0.03em;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-label,
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: #c8a97e;
  font-weight: 400;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.portfolio-intro {
  margin: 14px 0 0;
  max-width: 700px;
  color: #dddddd;
  font-size: 1.15rem;
  line-height: 1.7;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 169, 126, 0.28);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.45);
  color: #f5f1e8;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #f5f1e8;
}

/* RESPONSIVE BASE */

@media (max-width: 640px) {
  .container {
    width: min(1200px, calc(100% - 24px));
  }

  .section {
    padding: 56px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.02;
  }

  .portfolio-intro {
    color: #e4e4e4;
    font-size: 1rem;
    line-height: 1.62;
  }
}
