/* ===================================
   MODOFORMA — Main Stylesheet
   =================================== */

@font-face {
  font-family: 'Clash Display';
  src: url('../fonts/clash-display-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../fonts/clash-display-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../fonts/clash-display-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-black: #000000;
  --color-near-black: #0a0a0a;
  --color-white: #ffffff;
  --color-gray: #808080;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-display: 'Clash Display', Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-serif);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===================================
   Hero
   =================================== */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img,
.hero-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}

.hero-media img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(5, 5, 5, 0.75) 0%, transparent 55%),
    linear-gradient(to right, rgba(5, 5, 5, 0.55) 0%, transparent 55%);
}

.intro {
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.intro-content {
  max-width: 640px;
}

.intro-content h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.5;
}

.intro-content h1 strong {
  font-weight: 700;
}

.intro-content .divider {
  height: 1.5rem;
}

.cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2rem;
  background: var(--color-white);
  color: var(--color-black);
  border: 2px solid var(--color-white);
  border-radius: 60px;
  font-family: var(--font-serif);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.cta:hover {
  background: transparent;
  color: var(--color-white);
}

/* ===================================
   Marquee
   =================================== */
.marquee-section {
  background: var(--color-black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  /* Duration is long because the logo set is now repeated many times over
     (so the strip always fills the screen edge-to-edge, on any display width,
     with no visible seam or gap). */
  animation: marquee 450s linear infinite;
}

.marquee-track img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.marquee-item {
  flex-shrink: 0;
  height: 100px;
  width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: var(--color-near-black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* ===================================
   Footer
   =================================== */
.footer {
  position: relative;
  padding: 5rem 1.5rem 2.5rem;
  text-align: center;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
  filter: blur(60px);
}

.footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.footer address {
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-top: 1.25rem;
}

.footer address a {
  transition: opacity 0.2s ease;
}

.footer address a:hover {
  opacity: 0.7;
}

.footer-instagram {
  display: inline-block;
  margin-top: 2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 0.2rem;
}

.footer-bottom {
  margin-top: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gray);
}

.footer-bottom a:hover {
  color: var(--color-white);
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ===================================
   Manifesto sections (starthere page)
   =================================== */
.manifesto {
  padding: 4.5rem 1.5rem;
  text-align: center;
}

.manifesto h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
}

.manifesto p {
  max-width: 700px;
  margin: 0 auto;
  text-align: justify;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
}

.manifesto .wall {
  margin-top: 2.5rem;
}

/* ===================================
   Photo wall (drag/swipe-scrollable rows)
   =================================== */
.wall-row {
  margin-bottom: 1rem;
}

.wall-row:last-child {
  margin-bottom: 0;
}

.wall-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 8px;
}

.wall-track::-webkit-scrollbar {
  display: none;
}

.wall-track.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.wall-item {
  display: block;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.wall-item:hover {
  transform: scale(1.03);
}

.wall-item img {
  display: block;
  height: 160px;
  width: 240px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

@media (max-width: 600px) {
  .wall-item img {
    height: 110px;
    width: 165px;
  }
}

/* ===================================
   Lightbox
   =================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-image {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  font-size: 1.75rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-prev {
  left: 1.25rem;
}

.lightbox-next {
  right: 1.25rem;
}

@media (max-width: 600px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .lightbox-close {
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
  }
}
