:root {
  --black: #0a0a0a;
  --white: #f5f2eb;
  --cream: #f0ead8;
  --red: #c8341a;
  --gold: #c9a84c;
  --gray: #8a8a8a;
  --light-gray: #d4d0c8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Space Mono', monospace;
  cursor: crosshair;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ─── NAVBAR ─── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  display: flex;
  align-items: baseline;
  text-decoration: none;
}
.nav-logo .raw { color: var(--red); }
.nav-logo .art { color: var(--gold); }
.nav-logo .form-part { color: var(--white); }
.nav-logo .dot { color: var(--gold); font-size: 1rem; }
.nav-logo .com { color: var(--gray); font-size: 0.7rem; letter-spacing: 0.1em; align-self: flex-end; margin-bottom: 2px; margin-left: 1px; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--light-gray);
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links .current-menu-item > a,
.nav-links a.active { color: var(--gold); }
.nav-issue {
  font-size: 0.6rem;
  color: var(--gray);
  letter-spacing: 0.15em;
}

/* ─── HERO ─── */
.hero {
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 4rem;
  position: relative;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 60px,
    rgba(201,168,76,0.04) 60px, rgba(201,168,76,0.04) 61px
  );
  pointer-events: none;
}
.hero-issue-tag {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.15em;
  line-height: 2;
  max-width: 380px;
  position: relative;
  z-index: 1;
}
.hero-scroll {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.scroll-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  animation: pulse-line 2s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: 0.4; width: 40px; }
  50% { opacity: 1; width: 80px; }
}
.hero-right {
  background: #111;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art {
  width: 100%;
  height: 100%;
  position: absolute;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(200,52,26,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(201,168,76,0.2) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 20%, rgba(100,60,180,0.2) 0%, transparent 50%);
  animation: art-shift 8s ease-in-out infinite alternate;
}
.hero-art.has-image { background-size: cover; background-position: center; }
@keyframes art-shift {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.05) rotate(2deg); }
}
.hero-art-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 15vw, 18rem);
  color: rgba(255,255,255,0.04);
  position: absolute;
  letter-spacing: -0.02em;
  user-select: none;
  animation: float-text 6s ease-in-out infinite alternate;
}
@keyframes float-text {
  0% { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.abstract-shape {
  width: 280px;
  height: 380px;
  border: 2px solid var(--gold);
  transform: rotate(12deg);
  position: absolute;
  opacity: 0.3;
  animation: shape-rotate 15s linear infinite;
}
.abstract-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--red);
  border-radius: 50%;
  position: absolute;
  opacity: 0.2;
  transform: translate(60px, -40px);
  animation: blob 8s ease-in-out infinite alternate;
}
@keyframes shape-rotate { to { transform: rotate(372deg); } }
@keyframes blob {
  0% { border-radius: 50%; transform: translate(60px, -40px) scale(1); }
  100% { border-radius: 40% 60% 60% 40%; transform: translate(40px, 20px) scale(1.2); }
}
.hero-number {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8rem;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}

/* ─── SECTION HEADERS ─── */
.section-header {
  padding: 5rem 4rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.section-tag {
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
}
.section-number {
  position: absolute;
  right: 4rem;
  top: 4rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 7rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}

/* ─── ART MOVEMENTS ─── */
#movements { background: var(--black); padding-bottom: 6rem; }
.movements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0 4rem;
}
.movement-card {
  padding: 3rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: pointer;
}
.movement-card:hover { background: rgba(255,255,255,0.03); }
.movement-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: var(--red);
  transition: height 0.4s;
}
.movement-card:hover::before { height: 100%; }
.movement-year {
  font-size: 0.55rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}
.movement-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.movement-desc { font-size: 0.65rem; color: var(--gray); line-height: 2; }
.movement-key-artists {
  margin-top: 1.5rem;
  font-size: 0.55rem;
  color: var(--light-gray);
  letter-spacing: 0.15em;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
}
.movement-key-artists span { color: var(--gold); font-weight: 700; }

/* ─── GRAPHICS & POSTERS ─── */
#graphics { background: #0d0d0d; padding-bottom: 6rem; }
.graphics-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  padding: 0 4rem;
}
.graphic-feature {
  grid-row: 1 / 3;
  background: #1a1a1a;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.poster-graphic-1 {
  background: linear-gradient(135deg, #1a0a00 0%, #3d1400 30%, #c8341a 70%, #ff6b35 100%);
  position: relative;
  overflow: hidden;
}
.poster-graphic-1::before {
  content: 'FORM';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12rem;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  pointer-events: none;
}
.poster-graphic-2 { background: linear-gradient(180deg, #0a0a1a 0%, #1a1a4a 50%, #4a1a6a 100%); }
.poster-graphic-3 { background: linear-gradient(45deg, #0d1a0d 0%, #1a4a1a 60%, #4a9a4a 100%); }
.has-cover { background-size: cover !important; background-position: center !important; }
.has-cover::before { display: none; }
.graphic-sm { background: #1a1a1a; min-height: 295px; position: relative; overflow: hidden; }
.graphic-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  z-index: 2;
}
.graphic-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
.graphic-meta { font-size: 0.55rem; color: var(--gray); letter-spacing: 0.15em; }

.poster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 3rem 4rem 0;
}
.poster-item { aspect-ratio: 2/3; position: relative; overflow: hidden; cursor: pointer; }
.poster-item:hover .poster-overlay { opacity: 1; }
.poster-bg-1 { background: linear-gradient(160deg, #1a0a00, #c8341a, #ff6b35); }
.poster-bg-2 { background: linear-gradient(160deg, #0a0a1a, #4a1a6a, #c84ab4); }
.poster-bg-3 { background: linear-gradient(160deg, #0d1a0d, #1a4a2a, #4ab47a); }
.poster-bg-4 { background: linear-gradient(160deg, #1a1a0a, #4a4a0a, #c8b41a); }
.poster-inner-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1rem;
  z-index: 2;
}
.poster-inner-text h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
}
.poster-inner-text p {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.poster-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.15);
  border: 2px solid var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.poster-overlay span {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── STREET ART ─── */
#street-art { background: var(--black); padding-bottom: 6rem; }
.street-intro {
  padding: 0 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.street-intro p { font-size: 1.0rem; line-height: 2.2; color: var(--gray); }
.street-intro p:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.0rem;

  font-style: italic;

  color: var(--white);
  line-height: 1.8;
}
.street-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 350px 250px;
  gap: 3px;
  padding: 0 4rem;
}
.street-cell { position: relative; overflow: hidden; }
.street-cell:first-child { grid-row: 1 / 3; grid-column: 1; }
.street-cell-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.sb1 { background: linear-gradient(135deg, #0a0a0a 30%, #2a0a00); }
.sb2 { background: linear-gradient(45deg, #0a0a14, #1a0a2a); }
.sb3 { background: linear-gradient(135deg, #0a0a0a, #1a1a0a); }
.sb4 { background: linear-gradient(45deg, #0a0a0a, #0a1a0a); }
.sb5 { background: linear-gradient(135deg, #1a0a0a, #2a1a0a); }
.graffiti-text {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  opacity: 0.12;
  transform: rotate(-20deg);
  color: var(--red);
  white-space: nowrap;
}
.street-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
}
.street-label h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; }
.street-label p { font-size: 0.55rem; color: var(--gray); letter-spacing: 0.15em; margin-top: 0.2rem; }
.street-tag {
  display: inline-block;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.5rem;
}

/* ─── MARKETING ─── */
#marketing { background: var(--cream); color: var(--black); padding-bottom: 6rem; }
#marketing .section-header { border-top-color: rgba(0,0,0,0.1); }
#marketing .section-tag { color: var(--red); }
#marketing .section-title { color: var(--black); }
#marketing .section-number { color: rgba(0,0,0,0.05); }
.marketing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 0 4rem;
}
.marketing-block {
  padding: 3rem;
  background: white;
  border-left: 4px solid var(--black);
  position: relative;
}
.marketing-block h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 1rem;
}
.marketing-block p { font-size: 0.65rem; line-height: 2; color: #444; }
.marketing-stat {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
  display: flex;
  gap: 2rem;
}
.stat-item { flex: 1; }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--red); line-height: 1; }
.stat-label { font-size: 0.55rem; letter-spacing: 0.15em; color: var(--gray); text-transform: uppercase; margin-top: 0.3rem; }
.marketing-tips {
  padding: 3rem 4rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.tip-card {
  background: var(--black);
  color: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
}
.tip-card::before {
  content: attr(data-num);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}
.tip-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--gold);
}
.tip-card p { font-size: 0.6rem; line-height: 1.8; color: var(--gray); }

/* ─── INSTAGRAM ARTISTS ─── */
#instagram { background: #0a0a0a; padding-bottom: 6rem; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 0 4rem;
}
.artist-card { position: relative; }
.artist-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.artist-avatar img { width: 100%; height: 100%; object-fit: cover; }
.artist-handle { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.artist-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; }
.artist-location { font-size: 0.55rem; color: var(--gray); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1.5rem; }
.artist-bio { font-size: 0.63rem; line-height: 2; color: var(--light-gray); margin-bottom: 1.5rem; }
.artist-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.a-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--white); }
.a-stat-lbl { font-size: 0.5rem; color: var(--gray); letter-spacing: 0.15em; text-transform: uppercase; }
.artist-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feed-item { aspect-ratio: 1; position: relative; overflow: hidden; cursor: pointer; }
.feed-item img { width: 100%; height: 100%; object-fit: cover; }
.feed-bg-1 { background: linear-gradient(135deg, #1a0505, #6a1a1a, #c84a4a); }
.feed-bg-2 { background: linear-gradient(135deg, #0a0a1a, #1a1a4a, #4a4ab4); }
.feed-bg-3 { background: linear-gradient(135deg, #1a1a0a, #6a6a0a, #c8c84a); }
.feed-bg-4 { background: linear-gradient(135deg, #0a1a0a, #1a6a1a, #4ac44a); }
.feed-bg-5 { background: linear-gradient(135deg, #1a0a1a, #6a0a6a, #c44ac8); }
.feed-bg-6 { background: linear-gradient(135deg, #0a0a0a, #2a2a2a, #6a6a6a); }
.feed-bg-7 { background: linear-gradient(135deg, #1a0a05, #6a3a0a, #c87a1a); }
.feed-bg-8 { background: linear-gradient(135deg, #050a1a, #0a3a6a, #1a7ac8); }
.feed-bg-9 { background: linear-gradient(135deg, #0a1a05, #3a6a0a, #7ac81a); }
.feed-item:hover::after {
  content: '♥';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 1.5rem;
}

/* ─── INTERIOR & ARCHITECTURE ─── */
#interior { background: #111; padding-bottom: 6rem; }
.interior-featured {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3px;
  padding: 0 4rem;
  margin-bottom: 3px;
}
.int-feature-main {
  height: 500px;
  background: linear-gradient(160deg, #0a0a0a 0%, #1a1410 40%, #2a2015 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
}
.int-feature-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.15) 0%, transparent 50%),
    repeating-linear-gradient(90deg, transparent, transparent 80px,
      rgba(255,255,255,0.02) 80px, rgba(255,255,255,0.02) 81px);
  pointer-events: none;
}
.int-side { display: flex; flex-direction: column; gap: 3px; }
.int-sm {
  flex: 1;
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  position: relative;
  overflow: hidden;
  padding: 2rem;
  display: flex;
  align-items: flex-end;
}
.int-sm:first-child { background: linear-gradient(135deg, #0a0d0a, #101a10); }
.int-sm:last-child { background: linear-gradient(135deg, #0a0a0d, #10101a); }
.arch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 0 4rem;
}
.arch-cell {
  height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.arch-bg-1 { background: linear-gradient(160deg, #0a0a0a, #0a0a14, #141428); }
.arch-bg-2 { background: linear-gradient(160deg, #0a0a0a, #100a0a, #281414); }
.arch-bg-3 { background: linear-gradient(160deg, #0a0a0a, #0a100a, #142814); }
.arch-lines {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background:
    repeating-linear-gradient(90deg, white 0, white 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(0deg, white 0, white 1px, transparent 1px, transparent 40px);
  pointer-events: none;
}
.arch-accent {
  position: absolute;
  width: 2px;
  height: 60%;
  background: var(--gold);
  right: 3rem;
  top: 20%;
  opacity: 0.5;
}
.int-info { position: relative; z-index: 2; }
.int-info h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
.int-info p { font-size: 0.55rem; color: var(--gray); letter-spacing: 0.12em; }
.int-tag {
  display: inline-block;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

/* ─── CONTACT FORM ─── */
.contact-section { padding: 8rem 4rem 6rem; max-width: 880px; margin: 0 auto; }
.contact-section .section-tag { color: var(--red); margin-bottom: 1rem; }
.contact-section h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 2rem;
}
.contact-intro { font-size: 0.7rem; color: var(--gray); line-height: 2.2; margin-bottom: 3rem; max-width: 600px; }
.contact-form { display: grid; gap: 1.5rem; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-form label {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  padding: 1rem 1.2rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.06); }
.contact-form textarea { min-height: 180px; resize: vertical; }
.contact-form button {
  justify-self: start;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.4em;
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  text-transform: uppercase;
}
.contact-form button:hover { background: var(--gold); color: var(--black); }
.contact-msg {
  padding: 1rem 1.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.contact-msg.success { background: rgba(201,168,76,0.1); border: 1px solid var(--gold); color: var(--gold); }
.contact-msg.error { background: rgba(200,52,26,0.1); border: 1px solid var(--red); color: var(--red); }

/* ─── FOOTER ─── */
footer.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 5rem 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 4rem;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.footer-tagline { font-size: 0.6rem; color: var(--gray); line-height: 2; letter-spacing: 0.1em; }
.footer-col h4 {
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li,
.footer-col ul li a {
  font-size: 0.6rem;
  color: var(--gray);
  line-height: 2.5;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 0.3s;
  text-decoration: none;
  display: block;
}
.footer-col ul li:hover,
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.55rem; color: var(--gray); letter-spacing: 0.1em; }
.footer-social { display: flex; gap: 2rem; }
.footer-social a {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold); }

/* ─── DIVIDER ─── */
.art-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold), transparent);
  margin: 0;
}

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ─── LIGHTBOX ─── */
.raw-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
  cursor: zoom-out;
}
.raw-lightbox.open { display: flex; animation: lb-fade 0.3s ease; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.raw-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(201,168,76,0.3);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}
.raw-lightbox .lb-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--gold);
  padding: 0.5rem 1rem;
}
.raw-lightbox .lb-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--light-gray);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.lightbox-trigger { cursor: zoom-in; }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  text-decoration: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
}
.back-to-top .btt-arrow {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  transform: translateY(-2px);
}
.back-to-top .btt-label {
  display: none;
}
@media (min-width: 768px) {
  .back-to-top {
    width: auto;
    height: auto;
    padding: 0.9rem 1.2rem;
    gap: 0.6rem;
  }
  .back-to-top .btt-label {
    display: inline;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
  }
}

/* ─── WP CORE COMPAT (single/page/blog) ─── */
.entry-wrap { padding: 8rem 4rem 6rem; max-width: 880px; margin: 0 auto; }
.entry-wrap h1.entry-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: 0.05em; margin-bottom: 1.5rem; color: var(--white); }
.entry-wrap .entry-meta { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; }
.entry-wrap .entry-content,
.entry-wrap .entry-content p { font-size: 0.85rem; line-height: 2; color: var(--light-gray); margin-bottom: 1.5rem; }
.entry-wrap .entry-content a { color: var(--gold); }
.entry-wrap .entry-content h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin: 2rem 0 1rem; color: var(--white); }
.entry-wrap .entry-content img { margin: 1.5rem 0; }
.posts-list { padding: 8rem 4rem 6rem; max-width: 1100px; margin: 0 auto; }
.posts-list .post-card { padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.posts-list .post-card h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 0.5rem; }
.posts-list .post-card h2 a { color: var(--white); text-decoration: none; }
.posts-list .post-card h2 a:hover { color: var(--gold); }
.posts-list .post-card .meta { font-size: 0.55rem; color: var(--gold); letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 1rem; }
.posts-list .post-card .excerpt { font-size: 0.7rem; color: var(--gray); line-height: 2; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; height: auto; }
  .hero-left { padding: 8rem 2rem 4rem; min-height: 60vh; }
  .hero-right { min-height: 50vh; }
  .movements-grid,
  .marketing-tips,
  .insta-grid,
  .arch-grid,
  .poster-grid { grid-template-columns: repeat(2, 1fr); }
  .marketing-grid,
  .street-intro,
  .interior-featured { grid-template-columns: 1fr; gap: 1.5rem; }
  .graphics-layout { grid-template-columns: 1fr; }
  .graphic-feature { grid-row: auto; min-height: 360px; }
  .street-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 250px 250px 250px; }
  .street-cell:first-child { grid-row: 1; grid-column: 1 / -1; }
  footer.site-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .section-header { padding: 4rem 1.5rem 2rem; }
  .section-number { right: 1rem; top: 2rem; font-size: 4rem; }
}
@media (max-width: 640px) {
  .movements-grid,
  .marketing-tips,
  .insta-grid,
  .arch-grid,
  .poster-grid,
  footer.site-footer { grid-template-columns: 1fr; padding-left: 1.5rem; padding-right: 1.5rem; }
  .marketing-grid,
  .street-grid,
  .interior-featured,
  .graphics-layout { padding-left: 1.5rem; padding-right: 1.5rem; }
  .marketing-block { padding: 2rem 1.5rem; }
  .contact-section { padding: 7rem 1.5rem 4rem; }
  .contact-form .row { grid-template-columns: 1fr; }
  .hero-left { padding: 7rem 1.5rem 3rem; }
  .hero-number { font-size: 5rem; bottom: 1rem; right: 1rem; }
}

/* ─── HAMBURGER MENU ─── */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold);
  width: 44px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 102;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  margin: 5px auto;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.nav-toggle:hover span { background: var(--white); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 99;
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

/* MOBILE + LANDSCAPE PHONES — ≤ 1024px (covers iPhone Pro Max landscape ≈ 932px) */
@media (max-width: 1024px) {
  nav.site-nav {
    padding: 1rem 1.2rem !important;
    flex-wrap: nowrap !important;
    gap: 0.5rem !important;
  }
  .nav-issue { display: none !important; }
  .nav-toggle { display: block !important; }

  ul.nav-links,
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    
    left: auto !important;
    width: 78% !important;
    max-width: 340px !important;
    background: rgba(10, 10, 10, 0.97) !important;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    height: 100vh !important;
    height: 100dvh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;     /* anchor to top instead of center */

    padding: 5rem 2rem 1.5rem !important;
    gap: 0 !important;
    margin: 0 !important;
    transform: translateX(100%) !important;
    transition: transform 0.4s cubic-bezier(.2, .7, .2, 1) !important;
    border-left: 1px solid rgba(201, 168, 76, 0.2) !important;
    z-index: 101 !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5) !important;
    list-style: none !important;
    overflow-y: auto !important;                /* allow scroll if many items */
  }
  ul.nav-links.open,
  .nav-links.open {
    transform: translateX(0) !important;
  }
  ul.nav-links li,
  .nav-links li {
    list-style: none !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
  }
  ul.nav-links a,
  .nav-links a {
    display: block !important;

    font-size: clamp(0.7rem, 2.2vh, 0.95rem) !important;
    padding: clamp(0.3rem, 1.2vh, 0.7rem) 0 !important;
    letter-spacing: 0.25em !important;
    line-height: 1.2 !important;

    width: 100% !important;
  }
}

/* DESKTOP (≥ 1025px) — hard reset to horizontal nav */
@media (min-width: 1025px) {
  .nav-toggle,
  .nav-backdrop { display: none !important; }
  ul.nav-links,
  .nav-links {
    position: static !important;
    transform: none !important;
    background: transparent !important;
    flex-direction: row !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: 0 !important;
    overflow: visible !important;
  }
}

/* ─── FULL WIDTH PAGE TEMPLATE ─── */
.fullwidth-page {
  padding: 0;
  max-width: none;
  margin: 0;
  background: var(--black);
}
.fullwidth-hero {
  width: 100%;
  height: clamp(280px, 50vh, 560px);
  background-size: cover;
  background-position: center;
  cursor: zoom-in;
}
.fullwidth-content {
  padding: 5rem 4rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
  font-family: 'Space Mono', monospace;
  color: var(--light-gray);
}
.fullwidth-content p {
  font-size: 0.85rem;
  line-height: 2.2;
  margin-bottom: 1.6rem;
  color: var(--light-gray);
}
.fullwidth-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin: 3rem 0 1.2rem;
  color: var(--white);
}
.fullwidth-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: var(--white);
}
.fullwidth-content h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin: 2rem 0 0.8rem;
}
.fullwidth-content a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.fullwidth-content a:hover { border-color: var(--gold); }
.fullwidth-content ul,
.fullwidth-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  font-size: 0.85rem;
  line-height: 2;
}
.fullwidth-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--white);
}
.fullwidth-content img,
.fullwidth-content figure {
  margin: 2rem 0;
  max-width: 100%;
  height: auto;
}
.fullwidth-content .wp-block-image img { cursor: zoom-in; }

/* Gutenberg alignwide / alignfull — let blocks break out of the column */
.fullwidth-content .alignwide  { max-width: none; width: calc(100% + 8rem); margin-left: -4rem; }
.fullwidth-content .alignfull  { max-width: none; width: 100vw; position: relative; margin-left: calc(50% - 50vw); }

.fullwidth-comments {
  padding: 3rem 4rem 6rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .fullwidth-content {
    padding: 3rem 1.5rem 4rem;
  }
  .fullwidth-content .alignwide {
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
  }
  .fullwidth-comments {
    padding: 2rem 1.5rem 4rem;
  }
}
